1

有谁知道如何从文件中正确读取如下所示的输入:

0.12,4.56 2,5 0,0.234

我想读入这样的 2 个数组:

a[0]=0.12
a[1]=2
a[2]=0;

b[0]=4.56
b[1]=5
b[2]=0.234

在java中我尝试使用扫描仪,它可以像0 4 5 3.45 6.7898等一样工作,但我希望它在顶部用逗号输入谢谢

这是我尝试过的代码:

import java.io.File;

导入 java.io.FileNotFoundException;导入 java.util.Scanner;

public class IFFTI {
    public static int size=0;
    public static double[] IFFTInputREAL= new double[100];
    public static double[] IFFTInputIMAG= new double[100];

    static int real=0;
    static int k=0;

    public static void printarrays(){
        for(int k=0;k<size;k++){
        System.out.print(IFFTInputREAL[k]);
        System.out.print(",");
        System.out.print(IFFTInputIMAG[k]);
        System.out.print("\n");
        }
    }

    public static void readIFFT(String fileName){

        try {
            Scanner IFFTI = new Scanner(new File(fileName));        
            while (IFFTI.hasNextDouble()) {
                if(real%2==0){
                    IFFTInputREAL[k] = IFFTI.nextDouble();
                    real++;
                }
                else{
                    IFFTInputIMAG[k] = IFFTI.nextDouble();
                real++;
                k++;}
            }
            try{
            size=k;
            }catch(NegativeArraySizeException e){}
        } catch (FileNotFoundException e) {
            System.out.println("Unable to read file");
        }

    }
}
4

5 回答 5

5

我认为这会做你想要的:

String source = "0.12,4.56 2,5 0,0.234";

List<Double> a = new ArrayList<Double>();
List<Double> b = new ArrayList<Double>();

Scanner parser = new Scanner( source ).useDelimiter( Pattern.compile("[ ,]") );
while ( parser.hasNext() ) {
    List use = a.size() <= b.size() ? a : b;
    use.add( parser.nextDouble() );
}

System.out.println("A: "+ a);
System.out.println("B: "+ b);

这为我输出:

A: [0.12, 2.0, 0.0]
B: [4.56, 5.0, 0.234]

您显然希望使用 File 作为源。如果你想把它变成一个双[],你可以使用 a.toArray()。

于 2012-01-08T15:36:38.290 回答
0

从 Java 中读取文件很容易:

http://www.exampledepot.com/taxonomy/term/164

弄清楚一旦将这些值保存在内存中后如何处理它们是您需要弄清楚的事情。

您可以一次读取一行并使用该java.lang.String split()函数将其转换为单独的值。只需将其",|\\s+"作为分隔符即可:

public class SplitTest {
    public static void main(String[] args) {
        String raw = "0.12,4.56 2,5 0,0.234";
        String [] tokens = raw.split(",|\\s+");
        for (String token : tokens) {
            System.out.println(token);
        }
    }
}
于 2012-01-08T15:34:14.033 回答
0

您将必须阅读完整的行。

String line = "0.12,4.56 2,5 0,0.234"; //line variable will recieve the line read

然后..你用逗号或空格分割线

String[] values = line.split(" |,");

这将产生一个像这样的数组:[0.12, 4.56, 2, 5, 0, 0.234]

现在,只需重新组织两个订单数组之间的内容。

于 2012-01-08T15:35:18.227 回答
0

编辑哎呀,这不是你想要的。我看不到构建您想要的数组的方式的逻辑。


  1. 从文件中读取内容
  2. 在空格上拆分字符串。为拆分数组的每个元素创建一个数组。

    String input = "0.12,4.56 2,5 0,0.234";
    String parts[] = input.split(" ");
    double[][] data = new double[parts.length][];
    
  3. 用逗号分割每个字符串。

  4. 解析为双精度。

    for (int i = 0; i < parts.length; ++i)
    {
         String part = parts[i];
         String doubles[] = part.split(",");
         data[i] = new double[doubles.length];
         for (int j = 0; j < doubles.length; ++j)
         {
             data[i][j] = Double.parseDouble(doubles[j]);
         }
    }
    
于 2012-01-08T15:35:59.717 回答
0
        File file = new File("numbers.txt");        
        BufferedReader reader = null;
        double[] a = new double[3];
        double[] b = new double[3];

        try {
            reader = new BufferedReader(new FileReader(file));
            String text = null;

            if ((text = reader.readLine()) != null) {
                String [] nos = text.split("[ ,]");
                for(int i=0;i<nos.length/2;i++){
                    a[i]=Double.valueOf(nos[2*i]).doubleValue();
                    b[i]=Double.valueOf(nos[2*i+1]).doubleValue();
                }
            }

            for(int i=0;i<3;i++){
                    System.out.println(a[i]);
                    System.out.println(b[i]);
           }

        } catch (FileNotFoundException e) {            
        } catch (IOException e) {            
        } finally {
            try {
                if (reader != null) {
                    reader.close();
                }
            } catch (IOException e) {            
            }
        }
于 2012-01-08T15:47:22.303 回答