我有一个文件:
A,0.3
B,0.1
C,0.2
...
我希望得到的数组具有以下形式:
String[] symbols = {A, B, C, ...}
Double[] frequencies = {0.3, 0.1, 0.2, ...}
我已经使用ArrayList(.add()很好),但经过一些设计决定,我希望数据在常规数组中。显然,我在下面的实现不起作用,但它是我最接近的:
while (scan.hasNextLine()) {
count ++; // Number of lines incremented
String[] parts;
parts = r.split(",");
// Store symbols into its own array
for(int i = 0; i < count; i ++)
syms[i] = parts[0];
// Store frequencies into its own array
for(int i = 0; i < count; i ++)
freqs[i] = Double.parseDouble(parts[1]);
}
计数跟踪扫描线的数量(条件时为真),这对我来说似乎没什么必要,但我现在正在尝试。因此帮助。感谢。
答案 0 :(得分:1)
已解决:我创建了一个5的数组但是好的程序是使用array-list来增加动态减小数组的大小
public static void main(String[] args) throws IOException {
String[] myArray;
double[] doubleArray = new double[5];
String[] strArray= new String[5];
int inc1=0;
int inc2=0;
FileReader fileReader = new FileReader("test.txt");
Scanner s= new Scanner(fileReader);
while(s.hasNext()){
myArray= s.next().split(",");
// to store double values
for (String getStr: myArray) {
if(isDouble(getStr)==true){
doubleArray[inc1]= Double.parseDouble(getStr);
inc1++;
}
// to store string values
else {
strArray[inc2]=getStr;
inc2++;
}
}
}
for(String ss : strArray){
System.out.println("str value-> : "+ ss);
}
for(Double nnn : doubleArray){
System.out.println("double value-> : " + nnn);
}
fileReader.close();
}
检查其是否可转换,如果它发送的是否则返回true
public static boolean isDouble( String input ) {
try {
Double.parseDouble(input );
return true;
}
catch( Exception e ) {
return false;
}
}
Testfile包含:
A,0.3
B,0.1
C,0.2
d,0.4
e,0.5
输出
str value-> : A
str value-> : B
str value-> : C
str value-> : d
str value-> : e
double value-> : 0.3
double value-> : 0.1
double value-> : 0.2
double value-> : 0.4
double value-> : 0.5
希望回答这个问题是否有用而不是投票