我以前學過軟體開發,但已經有一段時間沒有寫程式碼了。如果你要我寫程式給你並且出現問題,那我可能無法解決。每種軟體開發語言都有自己的寫法,所以我從Java換到C,再從C換到iOS也沒有帶來太大的意義,因為我對它們都不熟悉。
所以給你思路:
1: 找到R6
2: 從R6往後讀取,一邊讀一邊存起來例如你寫個數組, 沒讀一行就往數組裡面寫一行(java裡面是按行讀取的我記得好像是..... )
3,:每讀完一樣判斷每行的結尾字元是不是等於號,如果不是就繼續,如果是就結束讀取(這裡寫一個循環,讀到等於號就跳出循環)
4:最後把陣列裡面的東西拿出來輸出就好
每一種語言寫這個東西 語法會變但是思路不會 至於具體代碼 去翻翻書就全找到了
祝你學好JAVA
public class Test {
public static void main(String[] args) {
readFileByChars("d://test.txt");
}
public static void readFileByChars(String fileName) {
File file = new File(fileName);
Reader reader = null;
try {
if (file!=null) {
// 一次讀多個字元
char[] tempchars = new char[30];
#int charread = 0;
reader = new InputStreamReader(new FileInputStream(fileName));
// 讀入多個字元到字元陣列中,charread為一次讀取字元數
while ((charread = reader.read(tempchars)) != -1) {
// 同樣屏蔽掉\r不顯示
if ((charread == tempchars.length)
& (tempchars[tempchars.length - 1] != '\r')) {
System.out.print(tempchars);
} else {
for (int i = 0; i
if (tempchars[i] == '\r') {
continue;
} else {
System.out.print(tempchars[i]);
}
}
}
}
}
} catch (Exception e1) {
e1.printStackTrace();
} finally {
if (reader != null) {
try {
reader.close();
} catch (IOException e1) {
System.out.println("檔案不存在");
}
}
}
}
}
以上是Java如何將文件內容讀取並顯示在Label標籤中的詳細內容。更多資訊請關注PHP中文網其他相關文章!