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]3 Replies - 0 Views - Last Post: 15 minutes ago
#1
Reputation: 0
- Posts: 50
- Joined: 24-March 13
Posted 35 minutes ago
i have this binary file that keeps records of student but i dont seem to be able to only access the student i wantpart that read and prints out the message
while (true) { student = (Q4) input.readObject(); g++; if(student.getStudentName()=="Michel"){ System.out.println("Hello Michel"); //student.setStudentID(0); }else{ System.out.printf( "\n%-20S%-20S%.2f", student.getStudentName(), student.getStudentID(), student.averageMark(student.getMark(), student.getCredit())); }
my records
when i run this i get this result instead of Hello Michel
NAME STUDENT ID AVERAGE MARK NIMA 1 1.11 REZA 5478 7.50 DAVID 456789 8.33 DANIEL 456789 5.00 JOHN 4561237 5.00 MARYAM 456123789 7.50 MAZDAK 4561238 6.67 HELLO 123456 6.67 MICHEL 123 6.67 Number of Student(s) in record file: 9
Is This A Good Question/Topic? 0
Replies To: Finding object in binary file
#2
Reputation: 9040
- Posts: 33,540
- Joined: 27-December 08
Re: Finding object in binary file
Posted 24 minutes ago
Don't compare Strings using the == operator, as it compares their memory locations. Use the String equals() method instead, which will compare their literal values.
#3
Reputation: 0
- Posts: 50
- Joined: 24-March 13
Re: Finding object in binary file
Posted 17 minutes ago
Thank youi always forget that
one more question
is there a way to update my objects in my binary file or i have to read the whole file and update it and then write it back into another file ?
#4
Reputation: 9040
- Posts: 33,540
- Joined: 27-December 08
Re: Finding object in binary file
Posted 15 minutes ago
A RandomAccessFile will let you overwrite individual bytes. Really though, if you're modifying and updating new Objects, it would be better just to write a new File.Page 1 of 1
Source: http://www.dreamincode.net/forums/topic/321713-finding-object-in-binary-file/
hunger games trailer in plain sight hunger games movie review bats hunger games review jeff saturday jason smith
No comments:
Post a Comment
Note: Only a member of this blog may post a comment.