| | Java technology has various usage from mobile applications to Enterprise applications. I think the power of Java technology in web applications and applets is showed in "meez.com" where u can create your own 3d avatars. |
|
|
Success of Java lies in its portability. You only need to complite it once and it will in any platform, from Windows to Unix system. Although it will not run as fast as native code but being able to run in multiple platforms without recompiling it is great.
One feature that is very fun to use is its lighweight frames. With these technology you can create an application that will have a GUI of your choosing. Meaning even if you run the application in Windows System you can have an application GUI with a Mac look and feel or maybe Unix windows look and feel.
Java is only as good as the programmer(s) who use it... some people only get as far as to learn the basic system operations (e.g. System.out.print()
Java is only as good as the programmer(s) who use it :-p Java is only as good as the programmer(s) who use it... some people only get as far as to learn the basic system operations (e.g. System.out.print() Java is only as good as the programmer(s) who use it :-p that's right , Java technology is powerful only for programmers who are familiar with it . Java technology is powerful only for programmers who are familiar with it. I've had quite some experience using Java, from Swing, JDBC, IO and Socket programming. I'd be first to admit I was once in love with Java but now that I've come across PHP, I was suddenly made aware of the fact that Java is slow and too nitpicky. I do concede that I can still do more stuff with Java than with any other programming language but it really does bother me deeply now that after all these years, Java still is slow. Oh well, c'est la vie
Java is good for its portability but still has lots of problems. First of all, it is very version specific. Since certain features and improved and then removed, older java programs will stop working if the older jvm is not on the machine. This is a huge issue. If you have a good programmer, they will use only the prebuilt functions and features that are not brand new and also that are not being replaced in a more recent version.
The good thing with java is that in the past few years, it has become much quicker. The code is compiled again on the computer it is being run on before it is interpreted so that optimizations can take place. This is done while you are running the program but does not use many resources the way that it is implented.
I want to learn Java but the tutorials in SUN are worded so "techy" and full of unecessary words that I don't understand what they're trying to tell me. Is there any good tutorial site that speaks in English and teaches Java?
1. It is first really portable language - this fact has made it become the language of world wide web 2. It is first completely object oriented language - this fact is making JAVA introduced to many programmers and it is why many of programmers are transferring to the JAVA instead to continue their work in C or C++ 3. It is extensible - it has so many build up things and it is easy to extend while this is not case with language like C++ which doesn't receive regular updates like java. 4. It is safe language - Its sandbox model is unigue and it is safest language and it allows safest programming solution in the world. Only one loophole has been found in JAVA since its initial release. It corrects most of the errors you could gain in the C++ but for the price of freely programing however still it produce many very good principles liek Garbage Collector and so on but for the price of speed 5. It is just superior.
after learning the basics of Java and came across the GUI paint tutorial, I was very turned off. Until I recently found out that C++ has that too. I was about to turn back to C++ but now I've come to think that I should study both. I also just found out that with Swing library I have different options of how it would look?
It just upsets me that because of the JVM, Java programs are slow. Although they're powerful, its speed sucks. I'm just hoping that Java improves this one. If Java finally gets Java programs to speed up and have the same speed as C++, it would gain more respect and people would start turning to Java.
IMO the only good thing about Java is its portability. Other than that it is unacceptable for me to work with - it is slow, it takes up too much memory, and it's syntax definately isn't my favorite thing to work with with all the complexities that end up making me refuse to work with it completely. Even though I dislike C++, I believe it is a much more powerful language. Consider this: uTorrent which is made with C++ only occupies 1MB while Azereus, a client with similar featrures, is written with Java and occupies 70MB. There's something wrong with that.
Latest Entries
Replying to galexcd
I put the code you say about strings, and it returns true...? The thing that Java has with strings it that it reserves a special memory space for them, cuz in many situations the same string is made over and over and over, so this memory saves them to use it only one while the same string is being made, avoiding stupid memory usage. Pointers are great, but pointers are unsafe (maybe not for experienced of course) but java provides different ways to manage this situations. If there was not, why would there be so many programmers doing all types of programs in it? Maybe Java is not the best language, but it is now around just 10% slower than C++, and it really releives me to create a web app in Java using a Java server, and put my applications hosted in windows, and for the clients put linux/solaris servers, and not have the need to change everything. Anyway, it is about what do you want to do. I have used a little PHP for little web applications and like it over JSP, but I hate using pure JSP for medium applications, the same I hate using PHP for them. You can use one of the many java frameworks available and they have everything you need to do really anything you want. -reply by Sotnrgo
I know this is an old topic, but I didn't see it when it was first posted, and I am obligated to leave my opinion. I HATE java. Java is terrible. What other language can you not compare a string variable to a string?
ex: CODE String a="java"; return a=="java" //<---RETURNS FALSE This is because Sun forgot to incorporate strings in Java and instead of developing it into the language, they decided just to make String a class, which makes you hit roadblocks like this. Other things that tick me off about java: You are forced to program object oriented all the time. Even if your program isn't object oriented you need to make all of your methods static so java at least treats it non OO, even though it still is. All Complex data types are passed by reference instead of value when passing them to a method. So you don't even get a choice if you want your variable to be a pointer or not. It just is or it isn't. Not up to the programmer. Why does java make it so difficult to change the amount of elements in an array. I understand about memory allocation but I would prefer if java would automatically garbage collect an old array and pass the values in a new array so you wouldn't have to go through this extra annoying step every time. Wow Tetraca, thanks for that interesting info. I didn't know uTorrent was made in C++. I love uTorrent! It's so fast and small and portable! Wow, Azereus takes up that much! Hm... I'm so confused! I don't know which is better! Lol, still I will finish studying both languages. It's better to know both than one--leaves me open for more jobs. Agreed and it will give you a lot of advantage if you know both then if you stay on just one. Furthermore JAVA has nice thing called native methods these are methods written in other programming languages so if you have problem. With something to do it in java or more usually if you want to write crucial part of your program which needs to be executed very fast I would suggest writing it in C or C++ better and even better if you are hardcore in the assembler, although in most cases this might prove as futile attempt. And for torrents clients I think Azureus is better and not because it has been programmed in Java but because it has been so compatible with everything and has planty of ptions.
Wow Tetraca, thanks for that interesting info. I didn't know uTorrent was made in C++. I love uTorrent! It's so fast and small and portable! Wow, Azereus takes up that much!
Hm... I'm so confused! I don't know which is better! Lol, still I will finish studying both languages. It's better to know both than one--leaves me open for more jobs.
Similar Topics
Keywords : power, java, application, shows, java, features
I need help here (1) I just got web hosting approved and I want to host the site I created using Struts framework. (2) Hi, I'm interested in game creation on websites. The game should be playable via web browser. (0) I had found this site >> http://learnjava.awardspace.com This website is for people who want (2) I'm having some issues with working with objects . I get an index out of bounds ex. (11) I thought they were completely different things. Surely javascript should be seperated from the rest.... (2) Many having tell me to make my MMORPG in java leads me to agree, But I'm not sure truly is it (1) Hey there, I have made an applet that shows images moving about the screen. I have pause/resume (6) Hey there guys! How would i go about making an object move about a fixed point for a java (2) The HTML <script> tag is used to insert a JavaScript into an HTML page. Examples Write text Is it good? (5) Hi, I'm doing a course called Software Design and Development for HSC in a high school in where to start (10) does anyone know of any good websites with free java tutorials for people without a lot of prior I need help with a method using iterator (2) /** * Remove from the club's collection all members who * joined in the given month, I need help to understand this question (2) Ok at my Uni they teach you OOP with java, They used to do with C++ i believe but swiched to java Command Prompt on right click menu (2) With this registry edit you can easily open the current folder in prompt without going through any JSF, Spring MVC, Stripes, Struts 2, Tapestry and Wicket (0) JSF Pros: Java EE Standard - lots of demand and jobs Fast and easy to develop with (0) Hi i just registered to this site. can any1 tell me how to deploy a java app here? i use weblogic How to include text and image in some scrollable container? (1) Hello everyone, I am just writing some kind of text editor as practice for some school project and I (3) I dont have much knowlege with java yet. Im a php programer not a java programer but i want to learn (4) so most of you guys know mig33. its a wap application,probaly java.most kindly to be java. does online purchasing using java, jsp, sql (1) does anybody have a readymade java project titled online purchasing? if u have, pls let me know..... Doesnt work in Safari (1) This code wont work in Safari, but works fine in Firefox 2. Can someone help. The error pops up are they the same or different (5) I think most of you always confuse about java and javascript .So I make this topic to talk about it. All your queries regarding Java Programming goes here. (8) Hellow friends, I am creating this thread for all queries and suggestions related to java coding. If (6) aving some problems taking in the Java at Uni, Was wondering if anyone could shine some light on it to be customized (12) hi to all!!!! just like to ask if it would be possible if i could make a custom Works with Firefox, not IE (8) CODE <HEAD> var popUpWin=0; function popUpWindow(URLStr) { - a full code for a dynamic drop down (2) Introduction This is a code that I use to dynamically create the drop down menus. First, you have Run Java program on double click (11) Some of the installables in java comes in form of .jar file, one has to just double click or type (72) In your opinion what's the best java editor/compiler? i use jcreator le and it works nicely....... Looking for power, java, application, shows, java, features
|
|
![]() The Power Of Java - the best application that shows java features |
| ADD REPLY / Got an Opinion! | Remove these ADs! | RAPID SEARCH! | Free Web Hosting | [X] |
|
Express your Opinions, Thoughts or Contribute more info. to help others. Ask your Doubts & Queries to get answers, So that "Together We can help others!" |
Register FREE for AD-FREE forum, Create your own topics, Ask Questions, track topics, setup subscriptions & notifications and Get a Free Website w/ Email and FTP. | 500MB Space *No Ads*, CPanel, FTP, PHP, MySQL, EMails - 100% FREE |
|