My first full java app

mrchimp

Newbie
Joined
Jul 19, 2003
Messages
1,928
Reaction score
0
ITF.JPG


http://homepage.ntlworld.com/j.palethorpe/Programming/ITF/ITF.jar

I'll let you work out what it does :thumbs:

I'll post sections of the code if there's anything anyone wants to see in particular.
 
Not quite sure what ot does tbh :eek:

You could at least give a hint as to what that sensitivity slider does :)
 
Finds text I guess, lol. mrchimp I had to change how you added to the JFrame to get it to work on my system here (w/Java 1.4.2_04). I don't know if they changed it for 1.5 but I know in 1.4 you're not actually supposed to use JFrame's add method to add a Component, but instead yourJFrame.getContentPane().add(...).

Oh, and btw, your source files are in that jar. ;)
 
lol well um I meant to do that...

I forgot to add that it may not work properly on 1.4, on 1.5 you don't have to specifiy the content pane. Apart from that though I don't think I have used any other 1.5 features so it should be OK.

I'm not to bothered about the Source code, just ignore the stupid comments I'v included. TBH I was considering posting all the source code anyway, plus I didn't bother to confusticate it so you could back engineer it (which is what I thought you had done for a second).

The sensitivity slider indicates how many letters there has to be in a string of characters (or numbers) before it outputs it to the screen/file.

BTW it's meant for scanning exe's and the like.
 
Oh... Cool. Much more useful than scrolling through a hex editor, though I could see a feature that told you which line & maybe column it found the text as being useful.

I never understood why they made it so you needed to use getContentPane(). Glad to hear that's out. 1.5 is shaping up pretty nicely eh?
 
I wouldn't know how much better 1.5 is than 1.4 because I have only used 1.5 but I have seen a couple of changes in the API documentation and the latest beta uses OpenGL acceleration in Java3D.

I'll try adding columb and line number, it won't be the same columb and line number you would get in a hex editor though. However I think it would be the same as note pad or any UTF-16 text editor.
 
psyno said:
Oh... Cool. Much more useful than scrolling through a hex editor, though I could see a feature that told you which line & maybe column it found the text as being useful.

I never understood why they made it so you needed to use getContentPane(). Glad to hear that's out. 1.5 is shaping up pretty nicely eh?
Indeed. I can't wait to get the full release, its going to be so great :)
And hopefully by the time that 'Tiger' is released, NetBeans4 will be available ;)
 
Back
Top