文件读取失败 报错 文件不存在
来源:7-4 图的算法框架
慕勒9548534
2019-07-25
public static void main(String[] args) {
/*String filename = "/algorithm/src/com/heima/graph/text1.text";
SparseGraph sg1 = new SparseGraph(13, false);
ReadGraph rg1 = new ReadGraph(sg1, filename);
System.out.println("text1 in SpareseGraph");
sg1.show();*/
String filename2 = "text1.text";
SparseGraph g1 = new SparseGraph(13, false);
ReadGraph2 readGraph2 = new ReadGraph2(g1, filename2);
System.out.println("test G1 in Sparse Graph:");
g1.show();
}
代码和课程代码没有出入 用的eclipse, 我的text文件和测试类都在同一个包下 分别用了相对路径和绝对路径实验 都是显示不存在,麻烦老师给看一下 谢谢
写回答
1回答
-
liuyubobobo
2019-07-26
肯定是路径有问题。因为我这里没有eclipse,也测试不了eclipse是不是和其他IDE在默认路径设置上有什么问题。尝试一下把这个路径"/algorithm/src/com/heima/graph/text1.text"
其中的algorithm去掉。
也就是相对路径从algorithm开始,这样"/src/com/heima/graph/text1.text"试试看。
继续加油::)
022019-07-26
相似问题