9Mcode comment |
|
|
|
|
|
|
- - - - - - - - - - - - - - ผู้ให้การสนับสนุน- - - - - - - - - - - - - -
|
|
|
กระทู้ #2872 [Java] (จาก IP: 203.172.199.254)
อ่านtextfile ไปแสดงที่ textarea
ขอcode ตัวอย่างในการอ่านข้อความที่เป็น ข้อความ.txt แล้วให้ไปแสดงที่ textarea ขอบคุณล่วงหน้า
|
จากคุณ
:
pong / pong861@hotmail.com [2010-05-09 10:29:23]
|
|
ความคิดเห็น #27875 (จาก IP: 203.172.199.254)
ช่วยแก้ให้ด้วยครับ นำข้อความ.txt แล้วให้ไปแสดงที่ textarea
package Student;
import java.awt.Cursor; import java.awt.event.ActionEvent; import java.awt.event.ActionListener;
import javax.swing.ImageIcon; import javax.swing.JOptionPane; import javax.swing.JPanel; import javax.swing.JScrollPane; import javax.swing.JTable; import javax.swing.JTextArea; import javax.swing.JTextField; import javax.swing.table.TableModel;
import java.io.*;
public class ExplanCal extends JPanel implements ActionListener {
JTextField txtExplane; JScrollPane scroll; ImageIcon pic; static JPanel a; String FileName; public ExplanCal() { a=new JPanel(); a.setLayout(null); a.setSize(750,940); setLayout(null); a.setCursor( new Cursor(Cursor.DEFAULT_CURSOR)); add(a);
FileName = "D:/database/DiscriptioSubj.txt"; String line ; try{ BufferedReader in= new BufferedReader(new FileReader(FileName)); line=in.readLine(); while(line!=null){ System.out.println(line); line=in.readLine(); } in.close(); } catch(IOException iox){ JOptionPane.showMessageDialog(null,iox.getMessage(),"Textfile Erro",JOptionPane.ERROR_MESSAGE);
} txtExplane=new JTextField(); scroll=new JScrollPane(txtExplane); a.add(scroll); scroll.setBounds(10,10,720,420);
}
public static void main(String[] args) throws IOException {
new ExplanCal();
}
public void actionPerformed(ActionEvent arg0) {
}
} |
จากคุณ
:
pong / pobg861@hotmail.com [2010-05-09 13:47:59]
|
|
|
- - - - - - - - - - - - - - ผู้ให้การสนับสนุน- - - - - - - - - - - - - -
|
|
|
|
|
|
|