458 Posted Topics
Re: Have you Googled it already ? If not it would be worthwhile doing it. BTW a google search for "tidalwave java package" lists only ine such : 'it.tidalwave' Is it the one you are looking for ? If not specify the full package name. Do the same for the other … | |
Re: [QUOTE=anuragkollam;767009]please help any body knows the code in java networking..i want the code of transfer folder contents from client to server.....thread must me included so that timely back up will occur... <snipped email> Read the rules to be obeyed by members while posting on this forum. Try and respect them. … | |
Re: The same way you would do in a console java program, the java syntax for writing the BFS won't change for certain. ;-) Only time when you need to access some local resources would the applet have restrictive behaviour. But for trees which I assume would be entirely in memory … | |
Re: To tell you somethings to start off : firstly you are not the first person and certainly not the last one to be bruding over this question. Secondly this question can be satisfactorily answered by a person having enough expertise and expierience in both of the langauges in question, I … | |
Re: Reading [URL="http://java.sun.com/docs/books/tutorial/java/javaOO/index.html"]this[/URL] would give you a detailed idea of the things you want. All the topics of interest are listed there. | |
Re: Hi Chris, For the first project that involves html I would suggest you [url]http://www.w3schools.com/html/DEFAULT.asp[/url] which is the HTML Tutorial of w3schools and also [url]http://www.w3schools.com/[/url]. W3Schools is a very well known tutorial collection that would cater to your knowledge requirements for HTML, CSS, JavaScript, XHTML etc. For the second project I … | |
Re: I don't think this will replace my habbit of running to google for anything and everything, for reasons stated : A single search engine provides you so much information about whatever you need that seeping through that itself is an ardous task, in that too Google mostly dishes out whatever … | |
Re: @BestJewSinceJC : While it is certainly possible to decompile class files and you would certainly get several decompilers, one of which is the DJ Java decompiler, I would like to point out a thing here. The source code thus obtained would not be an exact copy of your .java file. … | |
Re: Calling a URL and parsing it for plain text values is not what you would want. What you first require is an HTTP API from the site owners which will provide you with proper values. But this certainly requires an API defined at their end and would require you to … | |
Re: As stultuske appropriately mentioned it, since it is 50% of the score it certainly must have been given sufficient time to be completed. Yet you did not do it and now you are asking others to do what you did not, maybe just because you were acting plain lazy. In … | |
Re: [QUOTE=Deathrains;763170]SO did u actually do something :? please share i also need it )[/QUOTE] Check the dates before posting and better do some research too, since this thread is more than years old chances are that such a system might be in place at several places and you might also … | |
Re: As sos correctly mentions it there should be a clear fomation of the data that you want to parse, only then will you be able to parse it correctly in all cases. For this you would either have to have a fixed width for each field or distinct termination characters … | |
Re: [QUOTE=Gabriel Arun.R;763043]Hi friends, im new to java. so im facing lot of problems in developing applications. I need all ur help. pls give ur support to ur friend. I dont have much support in my side[/QUOTE] That's not like all hell breaking loose. This is faced by all learners of … | |
Re: You have stated that you have already found that package than why again do you want to find the same package ? Also you can get information about the package, it's use and an optional API doc specifying the usage of the library it offers from the same place you … | |
Re: [QUOTE=bahr_alhalak;756506]Hi , how are you? [/QUOTE] I am fine. [QUOTE=bahr_alhalak;756506] please, could you help me to solve this question? [/QUOTE] No, Reason ? Your next statement. [QUOTE=bahr_alhalak;756506] which is a part of the compitision's questions. [/QUOTE] If this question is part of a competition I simply do not want to … | |
Re: As mentioned above how is the file shared ? But more importantly whats this got to do with Java ? Please put your question in proper context so that we are able to understand and in turn help you better. | |
Re: Yes but again where is it that you are getting stuck up ? Don't expect us to form the logic for you since you know what's to be done, you should be able to deduce a correct logic for that and write the code for it, then if you are … | |
Re: I guess it's [code=c] struct names{ // .... } x; [/code] or put it this way [code=c] struct names{ // ... }; struct names x; [/code] | |
Re: Since p1BloodType, p2BloodType and chBloodType are character arrays you can extract characters from them using the index position of the array. So for e.g. if you want to get the character at the 10th position of the p1BloodType array what you can do is : [icode]char ch = p1BloodType[9]; // … | |
Re: IT depends on if your program has something to offer for others. An API offers an abstraction for some low-level tasks while doing some higher level tasks. Let me give you an example of address book itself (since your program dela with it) An address book has contacts which can … | |
Re: [QUOTE=AlbertPi;757949]There are a few URLs: These will help your project. [url]http://math.hws.edu/javanotes/c6/ex4-ans.html[/url] [url]http://www.csd.abdn.ac.uk/~etadjoud/teaching/CS5536/information/notes-java/45examples/30graphics/40roll_dice/10roll_dice.html[/url] [url]http://www.antionline.com/archive/index.php/t-228926.html[/url] Albert[/QUOTE] I suggest Albert to you to not point such members to a direct solution such as these. I went through the links and all of them provide a ready-made solution. I would not be surprised if … | |
Re: I could help you with a little bit of help from your side first.Pls detail your problem and also comment your code wherever appropriate. | |
Re: What you can do is you can make a class Pet and then make all the other classes extend from this class such as the ones you mention above. Then when you create an ArrayList of Pet type it will be able to hold objects of all types that have … | |
Re: I assume here you want to run the above command from java. Java provides you with facilities to run commands at shell/prompt with the [icode]Runtime.exec()[/icode] function It should be something like this : [code=java] String cmd = "C:\Program Files\aProgram\test.exe -login joeSmith password1"; Runtime run = Runtime.getRuntime(); Process proc = run.exec(cmd); … | |
Re: [QUOTE=l_03;756219]help guyz...our teacher recommend us to download the "source code" of eclipse. jcreator, net beans, and bluej,,, i am either confused,,,,what are the source codes of this four????are these the .java file???help guyzz,.....i cant seem to find their source codes since i dont even get the idea of what are … | |
Re: From whatever you have posted I assume you need something here where one thread continues the for loop while the other sleeps for 1 sec and then wakes up, is it ? If it is then I suggest you to take a look at the SwingWorker Class. But if it … | |
Re: [QUOTE=sfar_furqan;755290]what is a class path and how can I correct this problem. I read couple articles but i just couldnt pick anything can anyone help me???[/QUOTE] I am surprised that no one has made any effort to answer his primary question. You can get detailed knowledge about classpath - > … | |
Re: I think you should have chose to put them in the Tutorials section. Creating a thread for them is pretty much useless. PS : Now you can mark the thread solved (since it cannot be 'solved' as such) and increase my and stultuske's solved threads counter.... hey just a joke … | |
Re: What is the datatype of the field ? Through which program are you trying to insert the data (langauge) ? Table definition etc would be needed. | |
Re: Use the power of the Internet to find it out.... | |
Re: A few years ago I was facing the same situation, I had to write a file parsing script in perl and I had no knowledge till then that a langauge by such a name does exist. Adding more and more functionality to my script I started to knwo my way … | |
Re: One approach would be to put a static method inside the JFrame class called [icode]getInstace()[/icode] that would return an instance of the JFrame class (not necessarily new instance) you can restirct the instance to be single. Once this instance is returned you can call a non-static method on it. E.g. … | |
Re: If it is [B]purely simple[/B], you may as well write it on your own and ask us specific questions where you get stuck. We are not going to write the script for you. PS : You should write it on your own even if it is not purely simple ;) | |
Re: Use EXPLAIN followed by your query to get an explanation about the query from MySQL. Then you can analyze this output to know how your query is performing, then based on this you can optimize your query accordingly. Suggestion : Use the Internet to your advantage, you could have as … | |
Re: I am surprised at your patience, you have waited 19 days for the answer towards this post. Hasn't this crossed your mind even once during these 19 days that you might have already long solved your query if you had have taken the pains to search on the internet for … | |
Re: Can you detail a bit on what you exactly need to do rather than showing us what to do it through, so we can show you a completely different way, if there exists, to do the same thing efficiently. Also use EXPLAIN in front of your query for MySQL to … | |
Re: the path should inclulde the bin directory too. so just include C:\Program Files\Java\jdk1.6.0_10\bin instead of what you have now. | |
Re: Don't you think Googling it and finding it out for yourself would be a better and more learning oriented approach ? | |
Re: Normally I would move over this thread by just saying "ask specific problems or we are not here to solve your assignments" or something very similar. But the sheer amount of such posts makes me think that may be these guyz are really lost and may be they will be … | |
Re: You are promising to waste a lot of any one's time who would be willing to help you by posting such non-questions. There must be a zillion text books that have this text, we would be more interested in knowing your specific problem (minus this commentary - obviously) Also I … | |
Re: If you are able to detail what exactly are you trying to do by attempting to return the integer I think we could be of more use to you. | |
Re: [QUOTE=stultuske;752603][Code=Java] if(num=='8') pluralName="Eighty"; if(num=='9') pluralName="Ninety"; else pluralName="Error /w Plural Method"; [/Code] this will always return "Error /w Plural Method", unless the value for num == '9' what you want to do (and not only for the '8' check) is using nested if's [Code=Java] if(num=='8'){ pluralName="Eighty"; } else{ if(num=='9'){ pluralName="Ninety"; } … | |
Re: Yes I recommend that too since I am not able to read your design properly due to confusing names. I would be in a better position to tell you your way around once I am clear with your database design. I present here my suggestions from whatever I have understood … | |
Re: I think you would need to use Stored Procedures for this. Check MySQL Stored Procedures for their usage. | |
Re: @umairsario First you posted entire code which should not be done as this place does not sanction that. Then even after you were told you posted entire code (changed) a second time violating the T&C a second time. Third you are not even guiding someone the correct way by posting … | |
Re: What is it that you want ? You have already been given the links for that, still you ask for an explanation. But I guess the links would be carrying an explanation itself but in the words of the author who developed the Abstract Classes and Interfaces themselves or in … | |
Re: Are you planning to connect the applet to a database on the server ? Provide more details so that we can help you. | |
Re: There's no better way to explore and understand the Java language then to go through the [URL="http://java.sun.com/j2se/1.5.0/docs/api/"]javadocs[/URL], it helps you tremendously (Thats my opinion ;-)) | |
Re: hmm... sounds like an assignment to me, show us some code which asserts us about the work done by you and as mentioned above ask specific questions where you might get stuck up, then we may be able to assist you further. |
The End.