将double数组输出到text中
时间: 2024-02-18 07:01:44 浏览: 86
您可以使用以下代码将double数组输出到文本文件中:
```java
import java.io.FileWriter;
import java.io.IOException;
public class Example {
public static void main(String[] args) {
double[] arr = {1.2, 3.4, 5.6, 7.8, 9.0};
String fileName = "output.txt";
try {
FileWriter writer = new FileWriter(fileName);
for (int i = 0; i < arr.length; i++) {
writer.write(Double.toString(arr[i]) + "\n");
}
writer.close();
System.out.println("Successfully wrote to file " + fileName);
} catch (IOException e) {
System.out.println("An error occurred.");
e.printStackTrace();
}
}
}
```
这将在当前目录下生成名为“output.txt”的文件,其中包含以下内容:
```
1.2
3.4
5.6
7.8
9.0
```
您可以根据需要更改数组和文件名。
阅读全文