Example
#{example}"); ipb.editor_values.get('templates')['togglesource'] = new Template(""); ipb.editor_values.get('templates')['toolbar'] = new Template(""); ipb.editor_values.get('templates')['button'] = new Template("
Emoticons
"); // Add smilies into the mix ipb.editor_values.set( 'show_emoticon_link', false ); ipb.editor_values.set( 'bbcodes', $H({"snapback":{"id":"1","title":"Post Snap Back","desc":"This tag displays a little linked image which links back to a post - used when quoting posts from the board. Opens in same window by default.","tag":"snapback","useoption":"0","example":"[snapback]100[/snapback]","switch_option":"0","menu_option_text":"","menu_content_text":"","single_tag":"0","optional_option":"0","image":""},"topic":{"id":"5","title":"Topic Link","desc":"This tag provides an easy way to link to a topic","tag":"topic","useoption":"1","example":"[topic=1]Click me![/topic]","switch_option":"0","menu_option_text":"Enter the topic ID","menu_content_text":"Enter the title for this link","single_tag":"0","optional_option":"0","image":""},"post":{"id":"6","title":"Post Link","desc":"This tag provides an easy way to link to a post.","tag":"post","useoption":"1","example":"[post=1]Click me![/post]","switch_option":"0","menu_option_text":"Enter the Post ID","menu_content_text":"Enter the title for this link","single_tag":"0","optional_option":"0","image":""},"spoiler":{"id":"7","title":"Spoiler","desc":"Spoiler tag","tag":"spoiler","useoption":"0","example":"[spoiler]Some hidden text[/spoiler]","switch_option":"0","menu_option_text":"","menu_content_text":"Enter the text to be masked","single_tag":"0","optional_option":"0","image":""},"acronym":{"id":"8","title":"Acronym","desc":"Allows you to make an acronym that will display a description when moused over","tag":"acronym","useoption":"1","example":"[acronym='Laugh Out Loud']lol[/acronym]","switch_option":"0","menu_option_text":"Enter the description for this acronym (EG: Laugh Out Loud)","menu_content_text":"Enter the acronym (EG: lol)","single_tag":"0","optional_option":"0","image":""},"hr":{"id":"12","title":"Horizontal Rule","desc":"Adds a horizontal rule to separate text","tag":"hr","useoption":"0","example":"[hr]","switch_option":"0","menu_option_text":"","menu_content_text":"","single_tag":"1","optional_option":"0","image":""},"php":{"id":"14","title":"PHP Code","desc":"Allows you to enter PHP code into a formatted/highlighted syntax box","tag":"php","useoption":"0","example":"[php]$variable = true;\n\nprint_r($variable);[/php]","switch_option":"0","menu_option_text":"","menu_content_text":"","single_tag":"0","optional_option":"0","image":""},"html":{"id":"15","title":"HTML Code","desc":"Allows you to enter formatted/syntax-highlighted HTML code","tag":"html","useoption":"0","example":"[html]\n \n[/html]","switch_option":"0","menu_option_text":"","menu_content_text":"","single_tag":"0","optional_option":"0","image":""},"sql":{"id":"16","title":"SQL Code","desc":"Allows you to enter formatted/syntax-highlighted SQL code","tag":"sql","useoption":"0","example":"[sql]SELECT p.*, t.* FROM posts p LEFT JOIN topics t ON t.tid=p.topic_id WHERE t.tid=7[/sql]","switch_option":"0","menu_option_text":"","menu_content_text":"","single_tag":"0","optional_option":"0","image":""},"xml":{"id":"17","title":"XML Code","desc":"Allows you to enter formatted/syntax-highlighted XML code","tag":"xml","useoption":"0","example":"[xml]1 Replies - 0 Views - Last Post: 42 minutes ago
#1
Reputation: 0
- Posts: 17
- Joined: 29-October 11
Posted Today, 02:52 PM
Hi guys, I recently wrote a gui program that allow the user to load a file to play a simple game.I ran the program in my Java IDE and it works perfectly.
However, during the course of running the JAR program, it always encounters an error.
Here the code first:
public class loadwinlisten implements ActionListener{ public void actionPerformed(ActionEvent ev) { FileDialog fileOpen = new FileDialog(frame,"Open File",FileDialog.LOAD); fileOpen.setFile("*.txt"); fileOpen.setVisible(true); try{ new loadlisten().loadfile(new Scanner(new File(fileOpen.getFile()))); } catch(NullPointerException ex) { question.setText("Please load a file"); } catch(FileNotFoundException ex) { question.setText("File not found"); } } }
Everytime I select a file in the JAR, it always says "File not found" b/c of the FileNotFoundException.
I don't know why it doesn't work in the JAR, but does in the IDE?
Thanks a lot.
Is This A Good Question/Topic? 0
Replies To: JAR file error loading files
#2
Reputation: 0
- Posts: 17
- Joined: 29-October 11
Re: JAR file error loading files
Posted 42 minutes ago
Heres the loadlisten() methodpublic class loadlisten{ public void loadfile(Scanner file) { list.clear(); donelist.clear(); missnum.clear(); miss.clear(); answer.setText(""); correct = incorrect = 0; turn = 0; question.setText(""); answer.setText(""); stats.setText(""); int linenum = 0; try{ while(file.hasNext()) { String line = file.nextLine(); String word = line.substring(0,line.indexOf(';')); String definition = line.substring(line.indexOf(';')+1); list.add(new VocabularyClass(word,definition)); linenum++; } for(int x = 0;x < list.size();x++) { donelist.add(new Integer(x)); } showWords(); } catch(StringIndexOutOfBoundsException ex) { question.setText("There is an error in the notepad file (possibly you forgot a semi-colon) on line #"+(linenum + 1)); } } public void showWords() { frame1 = new JFrame("Words"); JTextArea areanew = new JTextArea(600,600); JScrollPane sp4 = new JScrollPane(areanew); sp4.setVerticalScrollBarPolicy(ScrollPaneConstants.VERTICAL_SCROLLBAR_ALWAYS); sp4.setHorizontalScrollBarPolicy(ScrollPaneConstants.HORIZONTAL_SCROLLBAR_NEVER); frame1.getContentPane().add(sp4); for(VocabularyClass v : list) { areanew.append("* "+v+"\n"); } areanew.append("\nPress \"Start\" to continue..."); framesopen.add(frame1); areanew.setFont(normFont); areanew.setLineWrap(true); areanew.setWrapStyleWord(true); frame1.setSize(600,600); frame1.setVisible(true); } }
Page 1 of 1
Source: http://www.dreamincode.net/forums/topic/322228-jar-file-error-loading-files/
scott walker recall fisker atlantic social darwinism wisconsin recall election april 4 santa monica college wisconsin primary
No comments:
Post a Comment