Hello
i have a java applicaton in mind, i am not sure if i shold go for a java stand alone application of a java applet.
can you guys tell me what prompts a user to go for a java standalone or a java applet?
Printable View
Hello
i have a java applicaton in mind, i am not sure if i shold go for a java stand alone application of a java applet.
can you guys tell me what prompts a user to go for a java standalone or a java applet?
Java applets are the way to go if you want to put it on a webpage or show it off to people who do not have a java programing program.
A console application works well if it is just a program you alone are going to use to do certain calculations or something of the sort.
thanks for the reply
if it is a java program which gets information via wifi and bluetooth, would it be better to do it as java or java applet?
Standalone. Applets are severely limited in what they're allowed to do and will probably be unable to access Wifi and Bluetooth devices.
Uh, no, applets require a JRE to be installed just like everything else.Quote:
show it off to people who do not have a java programing program.
Unless you are associating your applet with some activeX control, you won't be able to use Wifi or Blue-tooth in your appletQuote:
Originally Posted by vb_student
Just like CornedBee said, you'll need JRE to run any program that uses java techQuote:
show it off to people who do not have a java programing program.
heh NEVER use applet if you dont want your Code to be revealed to anyone..
An JavaApplet can be DeCompiled (Very Easy AND Fast)... Maybe its usefull to know that before you choose.. ;)
So can a normal Java application. The mechanism is the same.
Heh ok then just dont use Java :P
thanks for the reply
i thought the JRE would be embedded in the browserQuote:
Uh, no, applets require a JRE to be installed just like everything else.
with activex control , i will be able to use wifi and bluetooth?, isn't activex control a MS technology, what is the Sun (?) equivalent of activeX
a normal java application can be decompiled?Quote:
So can a normal Java application. The mechanism is the same.
No, unless you use a special browser (Neither FireFox nor IE embed JRE)Quote:
i thought the JRE would be embedded in the browser
So what if they are Microsoft technology, haven't you heard of InterOperationQuote:
with activex control , i will be able to use wifi and bluetooth?, isn't activex control a MS technology, what is the Sun (?) equivalent of activeX
If you haven't heard of the concept of De-compilers, its your problem, any program in any language can be decompiled (%30 of the source code maximum) so you're code will be safeQuote:
a normal java application can be decompiled?
That's barley correct, any program can be decompiled Very Easy AND FastQuote:
Originally Posted by Iron Skull
thanks for the reply
thanks for the reply compputerjy
then no browser is java applet ready, but they check for the java tags in the html and then check to see if they have the jre
is there a sun version of activex which will enable me to use wifi and bluetooth?
would not a bunch of library functions with an interface enable me to use my java program with bluetooth/wifi?
any program in any language can be decompiled (%30 of the source code maximum) so you're code will be safe
so only 30% of a program can be decompiled
I came across this and this about how to use java with blue-tooth, the second is about JME, I don't know if that's useful for you.Quote:
is there a sun version of activex which will enable me to use wifi and bluetooth?
That's not what I meant - not exactly - If you try to decompile any java app or applet using the best decompilers available you'll only get classes names methods names and constant values but you won't get the body of any methodQuote:
so only 30% of a program can be decompiled
I also found out from those links that you can use blue-tooth and wifi directly from java (I thought java can't handle hardware devices) which is a very good news. So now you don't have to include dlls in your app
I meen to java code and not to Assembly.Quote:
Originally Posted by ComputerJy
Just check NetForce (or anyother Cracking-Game Site) how to Decompile Java..
I've seen all types of decompilers and I know it can't give you the whole code,Quote:
Originally Posted by Iron Skull
If you know anyone that can I know people who would pay $10,000 for this type of product. But what everybody knows is
IT DOESN'T EXIST
because Sun isn't a stupid multi-Billion dollar corporation
thanks for the links dude
perhaps if i name the classes and methods something abstract then one wont know how the code has been written even if the code is decompield, correct?