• 大小: 711B
    文件类型: .java
    金币: 1
    下载: 0 次
    发布日期: 2021-06-13
  • 语言: Java
  • 标签: help  

资源简介

当点击运行时就会读取指定的路经下的文本。

资源截图

代码片段和文件信息

import java.io.*;
import javax.swing.*;
public class Help
{
public static void main( String args[] ) throws Exception{
File f = new File(“H:/javapro/files/testwords.txt“);
new ShowWin(f);
}
}
class ShowWin extends Jframe
{
JTextArea ta = null; 
JScrollPane jsp = null; 
ShowWin(File file) throws Exception {
this.setVisible(true);
this.setS

评论

共有 条评论