JAVA 为什么从TXT中读取文件并赋值与String里出现nullpointerexception,求大神解答-^_^-
classhelpextendsJFrame{staticJFramejf;JButtonjb;JLabeljlhel;publicvoidhelp()throwsFil...
class help extends JFrame { static JFrame jf; JButton jb; JLabel jlhel ; public void help() throws FileNotFoundException, IOException { jf=new JFrame("帮助页面"); jb=new JButton("返回"); jb.addActionListener(this); try { String encoding="GBK"; File file=new File("E:\\java2017\\5.16\\task1\\src\\task1\\sheet.docx"); if(file.isFile() && file.exists()){ //判断文件是否存在 InputStreamReader read = new InputStreamReader( new FileInputStream(file),encoding);//考虑到编码格式 BufferedReader bufferedReader = new BufferedReader(read); String lineTxt = ""; while((lineTxt += bufferedReader.readLine()) != null){ jlhel=new JLabel(lineTxt); } read.close(); }else{ System.out.println("找不到指定的文件"); } } catch (Exception e) { System.out.println("读取文件内容出错"); e.printStackTrace(); }jf.add(jlhel); jf.add(jb); jf.setBounds(200, 100, 250, 150); jf.setVisible(true); jf.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); }
展开
1个回答
2017-05-23
展开全部
文件不存在就会出现这个错误吧,你的 JLabel 没有初始化,找不到文件的时候就是 Null ,不能添加到 JFrame里面。
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询