- Strength to Increase Rep
- +10
- Strength to Decrease Rep
- -2
- Upvotes Received
- 78
- Posts with Upvotes
- 65
- Upvoting Members
- 43
- Downvotes Received
- 41
- Posts with Downvotes
- 35
- Downvoting Members
- 13
I enjoy the company of friends and family, though you would not find me in a big group of friends there would always be a number of friends whose friendship I cherish. I like to take care of the details while doing everything, this includes things I…
- Interests
- Reading a variety of subjects ranging from world politics to fiction to technology books. One of my…
- PC Specs
- Laptop : Lenovo 3500 N 500, Intel Dual Core Processor 2.8 Ghz, 3 Gb RAM, OS: Ubuntu 10.04 Has a great…
Re: talented + educated + smart + BEAUTIFUL= wife I would like. | |
Re: Why is everybody handing out code snippets to the OP here ? Not to mention some of you have got the assignment wrong completely. If you could see two of the more senior pros here have both given the solution without providing the code for it. Thats the way it … | |
Re: There are two ways you can do this. One of them is as described above to pack all .class into one executable jar file which can then be run on any PC that has JRE installed. This can be done through the use of a manifest file (you need to … | |
Re: What you could is traverse the entire string, character by character. At each character, check the char and increase it's count. You would have to maintain 26 different counters - one for each letter of the alphabet. Use the switch-case construct to check the chars. Something like below: [CODE]switch(char){ case … | |
Re: No problem in the class. When you run the program you need to use just the class name drop the .java file extension. javac invokes the compiler and transforms the source file (.java) into a bytecode file (.class) then you run the program by supplying the compiled bytecode file (.class) … | |
Re: [URL="http://www.lowagie.com/iText/docs.html"]iText[/URL] is a free, open source Java to PDF converter and it offers much more. | |
Re: [QUOTE=Black Box;483783]What do you mean exactly? Should I start throwing random programming topics at you? [I]Persistence, multithreading,...[/I] Maybe random OOP topics? [I]Inheritance, polymorphism,...[/I] Black Box[/QUOTE] These certainly won't be project topics as such...;) BTW commenting on the original post. I am surprised at just how many of these developers can't … | |
Re: Take a look at the [URL="http://java.sun.com/j2se/1.4.2/docs/api/java/io/package-summary.html"]Java I/O[/URL] package. I am sure it's a monster containing hundreads of classes but it present as many ways as there can be to write to a file in Java. OR You can use a [URL="http://java.sun.com/j2se/1.4.2/docs/api/java/io/PrintWriter.html"]PrintWriter[/URL] over an OutputStream like the [URL="http://java.sun.com/j2se/1.4.2/docs/api/java/io/FileOutputStream.html"]FileOutputStream[/URL]. The FileOutputStream can … | |
Re: The helper himself needs help ? Better tell the student to look at other places for solution I guess that way he would reach the solution faster. Why follow a bigger loop of he asking you and you asking us, that way he won't be able to understand how one … | |
Re: "Eye of the Tiger" - Survivor No, that I was listening to some time before. Let me tell you the truth, but this is Hindi. "Masakali" - Delhi 6 | |
Re: yes and it is also future's past. Is black sea black and dead sea dead ? | |
Re: @webman07 & newbie_mysql: Firstly webman07, trudge isn't wrong, let alone being arrogant. He just pointed you in the right direction. When posting on a forum its always good to know what the the forum has to offer, it's rules etc so you know your way around. Wasn't webman07 able to … | |
I have seen several posters asking for help on programs converting an Infix expression to a Postfix one. I have written a program to convert a simple Infix expression to a Postfix one so that people here can be directed towards some sample code from which they get the idea … | |
Re: I used to use Firefox previously now I like the lightweight Google Chrome. But it is true that firefox has some best add-ons xmarks,download manager and Adblock plus so in my opinon yes it is the best one around. Also I have noticed while developing web apps that IE produces … | |
Re: Such databases are often only sold commercially, if you are ready to pay a fee, [URL="http://www.ip2location.com/ip-country-region-city-latitude-longitude-zipcode-timezone.aspx"]ip2location[/URL] has just what you want. | |
Re: Your question doesn't make any sense at all do you understand that ? When you say "difference" it could be like what is the "difference" between iPad and iPad2 or between Windows XP and Windows Vista etc The difference is what the difference is between any two successive versions of … | |
Re: Please take time to read the sticky at the start of the forum. It does mention a lot of stuff beginners might need. Also read some of the forum rules. Before you ask a question it is always a good thing to see whether it is already answered. In the … | |
Re: [QUOTE]How long can some take to Master java programming?[/QUOTE] No one can answer this. Because the true masters are so deeply engrossed in what they do, they are so blissfully doing the thing that to them it no longer is work, it's play. Those ones would have lost the track … | |
Re: The "easiest" way to "dumb" programming is to download an IDE for a langauge when you are an infant in it. An IDE would pamper you with most things that should absolutely be not given to you at this stage. Take a look at the sticky at the top of … | |
Re: @ Nikhil: Wouldn't it be better to check the date before posting. the question was asked almost 5 years ago. | |
Re: If you are a beginner and would really like to take your skills to the next level, I recommend you use an Editor that offers the most basic capabilities, since it has been a personal observation that the more advanced IDEs people tend to use the more dependent they become … | |
Re: In addition to what masijade said: Write a manifest file which could be as simple as Main-Class: <MainClass Name> Version: 1.0 Put this manifest file inside the JAR so that it runs when double-clicked if that's what you are looking for. | |
Re: What is the output you are getting ? Tell us where exactly are you facing problem. | |
Re: What is the name of the file you have written this code into ? It should be named exactly what the public class in it is named which is [B]ImageDrawingApplet[/B]. The compiler clearly tells you the error and also marks the line in error: [I][B]\src\javaapplication19\Main.java:168: class ImageDrawingApplet is public, should … | |
Re: Alright curiosity is one reason, but beyond that I would like to know the point of such question not that I am against asking of it or something like that, but I just want to know the reason. Is it that you have already got the certificate and want to … | |
Re: [QUOTE]How to simulate protocols in Computer Networks[/QUOTE] You know what... I can read your mind even while you are offline and exactly know which protocol you want to simulate on what networks and what your assumptions/restrictions are.....But I simply DO NOT want to to help. | |
Re: If you observe more closely all the characters that have managed to get convered are from the set Latin-1 (0080-00FF) such as Á - \u00c1, ú - \u00fa, á - \u00e1, í - \u00ed. The only character that is not from the Latin-1 set but still gets converted is š … | |
Re: Why don't you look it up on the internet. Try finding answers to such questions by searching them on the internet, instead of asking forum members. This will save you time too as also you would have the oppurtunity to learn something else with that. |