我有一个关于如何将程序输出的某个部分写入文件的问题。在我的例子中,我的程序显示所有行星的半径,质量,直径和重力,我只需要在文件中显示重力。当我运行我的程序时,会创建该文件,但其中显示的是:
[D@642b6fc7
[D@642b6fc7
[D@642b6fc7
[D@642b6fc7
[D@642b6fc7
[D@642b6fc7
[D@642b6fc7
[D@642b6fc7
[D@642b6fc7
我该如何解决这个问题?任何帮助将不胜感激。以下是我的程序片段:
public static double[] calcGravity(double[] radius, double[] mass)
{
// fill in code here
double[] grav = new double[radius.length];
for(int i = 0; i < radius.length; i++){
grav[i] = (6.67E-17) * mass[i] / Math.pow(radius[i], 2);
}
return grav;
// The formula to calculate gravity is:
// 6.67E-17 times the massOfPlanet divided by the radius of the planet squared
}
//print the gravity values to text file
public static void printToFile(double[] gravity)throws IOException
{
// fill in code here
PrintWriter outFile = new PrintWriter(new File("/Users/timothylee/gravity1.txt"));
for(int i = 0; i < gravity.length; i++){
outFile.println(gravity);
}
outFile.close();
}
public static void main(String[] args)throws IOException
{
// Initialize variables
String[] names = {"Mercury", "Venus", "Earth", "Mars", "Jupiter", "Saturn", "Uranus", "Neptune", "Pluto"};
double[] radii = {2439.7, 6051.9, 6378, 3402.5, 71492, 60270, 25562, 24774, 1195};
double[] masses = {3.3022 * Math.pow(10,23), 4.8685 * Math.pow(10,24), 5.9736 * Math.pow(10,24), 6.4185 * Math.pow(10,23),
1.8986 * Math.pow(10,27), 5.6846 * Math.pow(10,26), 8.6810 * Math.pow(10,25), 1.0243 * Math.pow(10,26), 1.312 *
Math.pow(10,22)};
// or using big E notation:
// double [] mass = {3.30E23, 4.87E24, 5.97E24, 6.42E23, 1.90E27, 5.68E26, 8.68E25, 1.02E26, 1.27E22}; // See IMACS double lesson for big E notation
// Processing
double[] gravities = calcGravity(radii, masses);
// Output
printResults(names, radii, masses, gravities);
printToFile(gravities);
答案 0 :(得分:3)
当您打印出不是原始数据类型(对象,数组等)的内容时,将打印数据结构的内存地址而不是您要查找的内容。对于数组,您希望迭代其所有元素并逐个打印。
对于Object,您需要为要打印的实例变量调用getter函数。例如:
public class ExampleObject {
private int x;
public void setX(int x) { this.x = x; }
public int getX() { return x; }
public static void main(String[] args) {
ExampleObject ex = new ExampleObject();
ex.setX(5);
System.out.println(ex); // prints the memory address of this ExampleObject
System.out.println(ex.getX()); // call the getter for what you want to print.
}
}
但是,如果要在运行命令System.out.println(ex)
而不是内存地址时默认打印x,则可以覆盖Object类'toString()
方法,这是调用的方法要求打印对象时类的字符串表示形式。默认情况下,它返回对象的内存地址,这就是您所看到的原因。
public class ExampleObject {
private int x;
public void setX(int x) { this.x = x; }
public int getX() { return x; }
public String toString() { return ""+x; }
public static void main(String[] args) {
ExampleObject ex = new ExampleObject();
ex.setX(5);
System.out.println(ex); // prints the string representation of ex, which is the value of x
}
}
答案 1 :(得分:1)
您正在打印grav数组而不是将grav元素打印到文件中。
当您在文件中写下您的grav成员时,将grav
改为grav[i]
答案 2 :(得分:1)
而不是
outFile.println(gravity); // <-- prints the "value" of the gravity reference.
你可以try
outFile.println(Arrays.toString(gravity)); // <-- prints the values contained in the gravity array
答案 3 :(得分:0)
[D @ 642b6fc7表示对象所在的内存中的位置。如果不深入查看代码,您似乎需要尝试打印对象的特定属性而不是对象本身。您还可以尝试覆盖要打印的对象的toString()方法。