手机编写C++程序如何读取手机上的文件?
我用在电脑上写的方法在手机上写的c++程序,想读取手机上的文件,但是不成功(我的源代码和要读取的文件放在一个文件夹里)...
我用在电脑上写的方法在手机上写的c++程序,想读取手机上的文件,但是不成功(我的源代码和要读取的文件放在一个文件夹里)
展开
7个回答
展开全部
import java.io.BufferedReader; import java.io.File; import java.io.FileReader; import java.io.IOException; public class Test4 { public static void main(String[] args) { String[][] arr=new String[5][6]; String fileName="c:/a.dat"; File file = new File(fileName); BufferedReader reader = null; try { reader = new BufferedReader(new FileReader(file)); String tempString = null; char[] temp=null; int line=0; while ((tempString = reader.readLine()) != null) { temp=tempString.toCharArray(); for (int i = 0; i < temp.length; i++) { arr[line][i]=temp[i]+""; } line+=1; } } catch (IOException e) { e.printStackTrace(); } finally { try { reader.close(); } catch (IOException e1) { } } System.out.println("数组显示:"); for (int i = 0; i < 5; i++) { for (int j = 0; j < 6; j++) { System.out.print(arr[i][j]+" "); } System.out.println(); } } } String fileName="c:/a.dat"; 你自己看着改一下吧。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
可能是编译出来的程序位置不一致吧,试着输出程序当前目录
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询