| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 333 人关注过本帖
标题:[求助]程序运行时出错
只看楼主 加入收藏
Algorithms
Rank: 1
等 级:新手上路
帖 子:19
专家分:0
注 册:2006-12-1
收藏
 问题点数:0 回复次数:1 
[求助]程序运行时出错

import java.awt.*;
import java.io.*;
import javax.swing.*;
//import javax.swing.event.*;
import java.awt.event.*;
import javax.swing.filechooser.FileFilter;
public class test extends JFrame
{

static int result;
static JFileChooser jf;
JButton jbt;

public test()
{
Container cp=getContentPane();
cp.setLayout(new FlowLayout(1));
jf=new JFileChooser();
jbt=new JButton("打开文件");
jf.setFileFilter(new FFT());
jbt.addActionListener(new ActionListener()
{
public void actionPerformed(ActionEvent e)
{
result=jf.showOpenDialog(null);
}
}
);

cp.add(jbt);




setSize(400,400);
setVisible(true);

}
public static void main(String[]args)throws IOException
{
File file=null;
String name;
test ap=new test();
ap.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

if(result == JFileChooser.APPROVE_OPTION)
{
file = jf.getSelectedFile();



FileInputStream f=new FileInputStream(file);
int n=f.available();
byte[] b=new byte[n];

while(f.read(b)==-1)
return;
String str=new String(b);

System.out.print(str);

f.close();
}

}
}
class FFT extends FileFilter
{
public boolean accept(File f)
{
if(f.getPath().endsWith(".txt")||f.isDirectory())
return true;
else
return false;
}
public String getDescription()
{
return "txt文件";
}
}

搜索更多相关主题的帖子: 运行 
2006-12-28 01:18
中文名
Rank: 1
等 级:新手上路
威 望:1
帖 子:45
专家分:0
注 册:2006-12-12
收藏
得分:0 

正在看书 比较着急

程序代码:

import java.awt.*;
import java.io.*;
import javax.swing.*;
//import javax.swing.event.*;
import java.awt.event.*;
import javax.swing.filechooser.FileFilter;
public class test extends JFrame
{

static int result;
static JFileChooser jf;
JButton jbt;

public test()
{
Container cp=getContentPane();
cp.setLayout(new FlowLayout(1));
jf=new JFileChooser();
jbt=new JButton(\"打开文件\");
jf.setFileFilter(new FFT());
jbt.addActionListener(new ActionListener()
{
public void actionPerformed(ActionEvent e)
{
result=jf.showOpenDialog(null);
File file=null;
String name;
if(result == JFileChooser.APPROVE_OPTION)
{
file = jf.getSelectedFile();


try{
FileInputStream f=new FileInputStream(file);
int n=f.available();
byte[] b=new byte[n];

while(f.read(b)==-1)
return;
String str=new String(b);

System.out.print(str);

f.close();
}catch(FileNotFoundException eee){
System.out.print(\"文件不存在\");
}catch(IOException ee){

}
}
}
}
);

cp.add(jbt);




setSize(400,400);
setVisible(true);

}
public static void main(String[]args)
{

test ap=new test();
ap.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);



}
}
class FFT extends FileFilter
{
public boolean accept(File f)
{
if(f.getPath().endsWith(\".txt\")||f.isDirectory())
return true;
else
return false;
}
public String getDescription()
{
return \"txt文件\";
}
}


你的程序在这段之前file还是null的 除非把它搬到处理触发事件的方法里面去
if(result == JFileChooser.APPROVE_OPTION)
{
file = jf.getSelectedFile();



FileInputStream f=new FileInputStream(file);
int n=f.available();
byte[] b=new byte[n];

while(f.read(b)==-1)
return;
String str=new String(b);

System.out.print(str);

f.close();
}

2006-12-28 02:09
快速回复:[求助]程序运行时出错
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.039545 second(s), 7 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved