Java将值从数组传递到新对象实例

时间:2012-11-23 11:48:54

标签: java arrays file object

我有一些问题,将数组值传递给构造函数。我有一个file.txt,其中包含一些带有值的行,例如:

  

彼得|柏林|德国| 0930295235 |。FOO

我想出了如何将线条转换为数组。但我不知道如何将值从数组传递给构造函数,以将数组转换为具有数组属性的对象。

这是主要课程:

import java.io.BufferedReader;
import java.io.DataInputStream;
import java.io.FileInputStream;
import java.io.InputStreamReader;


public class FileReader {

    public static void main(String[] args) {
        try {
            // Open the file that is the first 
            // command line parameter
            FileInputStream fstream = new FileInputStream("file.txt");
            // Get the object of DataInputStream
            DataInputStream in = new DataInputStream(fstream);
            BufferedReader br = new BufferedReader(new InputStreamReader(in));
            String strLine;

            // Read the file line by line
            while ((strLine = br.readLine()) != null) {
                // Print the content on the console
                String s[] = strLine.split("\\|");
                // System.out.println(java.util.Arrays.toString(s));
                // System.out.println (strLine);
                for (String element : s) {
                    System.out.println(element);
                    // HERE I NEED TO PASS THE ARRAY VALUES FOR EACH LINE TO TRANSFORM THE ARRAYS TO OBJECTS
                    Item item = new Item(element,element,element,element,element);
                    System.out.println("*************************************");
                }
                // Close the input stream
                in.close();
            } catch (Exception e) { //Catch exception if any
                System.err.println("Error: " + e.getMessage());
        }
    }
}

这是课程项目:

public class Item {

    private String name;
    private String city;
    private String state;
    private String number;
    private String foo;

    public Object(String name, String city, String state, String number,String foo){
        this.name = name;
        this.city = city;
        this.state = state;
        this.number = number;
        this.foo = foo; 
    }

    public String getName() {
        return name;
    }
    public void setName(String name) {
        this.name = name;
    }
    public String getCity() {
        return city;
    }
    public void setCity(String city) {
        this.city = city;
    }
    public String getState() {
        return state;
    }
    public void setState(String state) {
        this.state = state;
    }
    public String getNumber() {
        return number;
    }
    public void setNumber(String number) {
        this.number = number;
    }
    public String getFoo() {
        return foo;
    }
    public void setFoo(String foo) {
        this.foo = foo;
    }
}

我需要对象来更多地处理数据。我感谢任何帮助。

6 个答案:

答案 0 :(得分:2)

我认为你想要做的事情就像下面这样,虽然它并不完全清楚。

String s[] = strLine.split("\\|");
Item item = new Item(s[0], s[1], s[2], s[3], s[4]);

另请注意,在您创建新的Item对象后,它几乎会立即超出范围,因此您需要将其存储在while循环之外声明的某种容器中:

List<Item> items = new ArrayList<Item>();
String line;

while((line = br.readLine()) != null) {
    String[] words = line.split("\\|");
    Item item = new Item(words[0], words[1], words[2], words[3], words[4]);
    items.add(item);
}

答案 1 :(得分:1)

我认为你不需要这个for循环。

for(String element : s)
{
}

如果您要从数组中提取特定的String,则应使用类似

的内容
String name = s[0];

但请注意不要选择数组范围之外的项目。

答案 2 :(得分:1)

String s[] = strLine.split("\\|");
Object item = new Object(s[0],s[1],s[2],s[3],s[4]);

答案 3 :(得分:1)

你不应该有一个for循环,只需将每个数组值传递给Object的构造函数,首先检查你是否有正确数量的值。新的Object已在Java中使用,因此请调用您的类(记住对象和类之间的差异),MyObj

MyObj myObj = null; // De
String s[] = strLine.split("\\|");
if (s.length==5){
  myObj = new MyObj(s[0],s[1],s[2],s[3],s[4]);
} else {
  System.err.println("Wrong number of arguments on the line"+strLine);
}

显然可以使用不带参数的构造函数,然后使用

设置每个字段
myObj = new MyObj();
myObj.setName( s[0]); //etc

对于哪些数据进入哪个字段

,哪个更易读

答案 4 :(得分:0)

如何将for循环更改为:

for(int i=0;i<s.size();i+=5) {
      System.out.println(s[i]);
      Object item = new Object(s[i],s[i+1],s[i+2],s[i+3],s[i+4]);
 }

但是这假设's'的大小是5n的形式; n是1,2,3 ......

答案 5 :(得分:0)

由于您知道file.txt的结构,而因此 String[] s的长度,您可以调用您拥有的数组的每个元素:

for (String element : s) {
    System.out.println(element);
    Item item = new Item(s[0], s[1], s[2], s[3], s[4]);
}

为了保存Item item并且不用循环中的下一个元素覆盖它们,可以将它保存到包含项目的数组中(从声明数组开始):

public static void main(String[] args) {
    try {
        ArrayList<Item> items = new ArrayList<Item>();
        ...

然后

for (String element : s) {
    System.out.println(element);
    Item item = new Item(s[0], s[1], s[2], s[3], s[4]);
    items.add(item);
}