5,031 Posted Topics
Re: [QUOTE=shivaji kore;1114087]pl replay me how to connect the jdbc in access[/QUOTE] Here you [URL="http://tinyurl.com/ybsydgr"]go [/URL] | |
Re: I'm IntelliJ since I learn how to read and write (just joking) I started with JCreator which is very simple and handy tool to avoid general confusion of all the functionality provided by big names. I moved on to NetBeans, but mobile development with is painful so now I use … | |
Re: There is number of programming languages available for mobile development[LIST] [*]C# under .NET Compact Framework for Windows CE - easy to learn, fast development, large number of devices available however not portable and most of available libraries have to be acquired for larger amount of money (nothing new in Microsoft … | |
Re: Read [URL="http://www.daniweb.com/forums/post1043097.html#post1043097"]this[/URL] | |
Re: [URL="http://books.google.com/books?id=chepSC2iAB8C&lpg=PP1&dq=beginning%20j2me%20from%20novice%20to%20professional%20third%20edition&pg=PA143#v=onepage&q=beginning%20j2me%20from%20novice%20to%20professional%20third%20edition&f=false"]Chapter 10 - Connecting to the world[/URL] from Beginning J2ME: From Novice to Professional, 3rd edition | |
The aim of this thread is to gather useful information in regards of Java web development. If you know some tips and tricks, tutorials or any interesting links that has not been already mentioned in previous posts please share with us (please always check to avoid double posting). Please DO … | |
Re: This will loop over and over till either word is typed correctly [CODE] System.out.println("Welcome"); System.out.println("This program will help you decide which World of Warcraft"); System.out.println("faction and class is best for you."); System.out.println(""); do{ System.out.println("Please enter a faction, horde or alliance."); faction = inputDevice.nextLine(); }while(faction.equalsIgnoreCase("horde") || faction.equalsIgnoreCase("alliance"));[/CODE] PS: Your while loop … | |
Re: So why don't you put it into code post here and we can discuss it? | |
Re: [URL="http://www.daniweb.com/forums/announcement9-2.html"]We only give homework help to those who show effort[/URL] | |
![]() | Re: I see no reason why you trying to force that JavaScript into servlet. Do you care to explain? Servlet deals with server logic and process client request, it does not interfere with client side of view. ![]() |
Re: Have try to run log4j [URL="http://logging.apache.org/log4j/1.2/manual.html"]example[/URL] | |
Re: Thread closed as same question asked in [URL="http://www.daniweb.com/forums/thread254400.html"]C++ section[/URL]. Make up your mind what language you want to use or you will never finish this... | |
Re: Not sure what you trying to achieve by queering ASP based document, would you care to explain what sort of data you wish to get from it? My general feeling is that you should use web service/SOAP etc For the second part I'm not sure what you trying to do. | |
Re: [QUOTE=xiri;1107890]hello um doing mi final project and have chose to do about passport agency system since is not yet established in our country really need ur help[/QUOTE] [LIST] [*]Create general idea what such system should have according to you [*]Do research on what other countries use based on content published … | |
Re: [QUOTE=deepak17;1107140]i want to make a project on messnger in java wit the help of jsp and sql database so kindly elp me on my project i m fresher so plz give the basic detail also[/QUOTE] Nobody is certainly stopping you there [QUOTE=deepak17;1107143]and i want code for print directly to the … | |
Re: [list=1] [*] create frame [*] create 2 text fields and 2 buttons [*] use layout manager to arrange above components [*] add above mentioned comments to frame [*] associate actions with buttons, that mean provide validation logic, some functionality to communicate with database(to establish connection to save data and to … | |
Re: [QUOTE=Srikant1;1106808]hi i have created a page using JSP called Login Page containing Username & Password As its Attributes My problem is that I am not able to connect it with My SQL Database can any body help me regardind connection code[/QUOTE] You need to explain you problem more clearly. Any … | |
Re: Have look on[URL="http://java.sun.com/javase/6/docs/api/java/net/package-frame.html"] net package[/URL] | |
Re: [QUOTE=musthafa.aj;1103439]first you check the query.. it may not be where id=? instead of id="+id+". second you check the column from select query that you compare with id...[/QUOTE] You better learn something about[URL="http://java.sun.com/docs/books/tutorial/jdbc/basics/prepared.html"] PreparedStatement[/URL] for next time... | |
Re: If you had searched forum you would found few answers like [URL="http://www.daniweb.com/forums/post1043097.html#post1043097"]this one[/URL] for start | |
![]() | Re: Have look at this [URL="http://http://www.manageability.org/blog/stuff/java-open-source-social-network"]article[/URL], looks promising start |
Re: Depending on requirements given to you, but mostly no as the list of the variables would make it too long. However I know a professor at university that demanded all variables to be listed too... | |
Re: [list=1] [*] What are your experiences with Java web development? [*] Extend your idea of "online software test engine" to some requirements not 4 words that explain nothing [/list] PS:Forum rule is to use full sentence English, chat speak is not welcome | |
Re: Can you please provide code so we can try to find out what is going on? | |
Re: You provided poor explanation of problem. In general form validation can be done on client side by use of scripting language such as JavaScript or on server side be servlet. So which way you want to go? | |
Re: Did your installation of NetBeans included Tomcat server or perhaps GlassFish? | |
Re: You just replied to 5 years old thread. Was it worth it? | |
Re: [QUOTE=ishan20;981676]hi m also going fir the same project... can u tell me which software r u going to use for image processing[/QUOTE] Software??? More likely programming language and any additional libraries or plugins | |
Re: I have no idea what I'm looking for as I do not see any use of [icode]outFile.print();[/icode] or [icode]PrintWriter outFile = new PrintWriter(outfile);[/icode] However what I see here is intentionally another problem [code=Java] public class Address { //Declare variables String street; String city; String state; String zip; String phone; static … | |
Re: [QUOTE=4me@u;1089902]when it finishes accepting file name it [I]throws exception[/I] [I][COLOR="Green"]No files on a serve[/COLOR][/I][/QUOTE] Please provide exact error message from exception, not custom message provided by you. Use printStackTrace() method | |
Re: [QUOTE=Arun kumar mca;1090788]sir i am doing mca project in networking ...concept is compress the encrypted file and then decompress and decrypt the same original file.. the file which may be text, image format or any combination which will be implemented in java sir... which is the best algorithm for compression … | |
Re: @BestJewSinceJC JAva Microedition is not compatible with Android. As adams161 pointed there is SDK for Android that can be added as plugin to Eclipse, IntelliJ IDEA or NetBeans (however there been some issues under NB, so far Eclipse has the best). Android SDK provide programming environment for you and also … | |
Re: [QUOTE=Clawsy;1089754]Maybe can someone show me how to send an image using UPD protocol in Java? And how to receive it at the client? Please.[/QUOTE] [URL="http://java.sun.com/docs/books/tutorial/networking/datagrams/index.html"]All About Datagrams[/URL] | |
Re: You better provide proper problem description, mind reading is out of fashion so we do not know what you up-to... | |
Re: It is complaining it did not get all 12 parameters as declared in query. Do you have any sort of validation for entered data to handle empty fields? | |
Re: [QUOTE=screenedcreamy;1089123]Any good suggestions for creating a JSP that reads several initialization parameters and outputs them to a Web page.[/QUOTE] What are you actually trying to achieve? Init parameters are normally things like data about database username, password or other essential information need it by sevlet and there is no reason … | |
Re: By running search on [url]http://scholar.google.co.uk/[/url] that will return you research materials on topic that will in return holds references to other materials. Happy reading. | |
Re: Please search JSP forum section for the answer is definite there. [I]Hint, I made a specific post on the MVC that is listed often lately [/I] | |
Re: I guess you placed mysql-connector-java-5.1.5-bin.jar in java installation on forgot to do same on the second pc. Either way, placing any libraries in Java installation directory is bad habit of many teachers passed on students. Your libraries should be either kept together with project, or have it in central library … | |
Re: Create panel with different content and just swap them in main frame. | |
Re: [QUOTE=aqeeb;1088194]description on fighter game[/QUOTE] You better to explain why did you bump 2 years old thread with such poor request | |
Re: You need to associate/attach to some object button, text box etc | |
Re: Nice, we see you can copy&paste now you have chance to prove you can read [URL="http://www.daniweb.com/forums/announcement9-2.html"]We only give homework help to those who show effort[/URL] | |
Re: Would you mind explaining what exactly you after so you can get more accurate advice? | |
Re: [QUOTE=EdwardS;1087696]I would recommend "JAVA How to program" - Deitel. Good luck.[/QUOTE] If you actually read thread linked by niek_e you would found that this book is mentioned there | |
Re: Please post your code otherwise you will get only general advice that may not be helpful. | |
Re: [QUOTE=wondergal04;1082843]yes im talking about building an image viewer, but i want it in for loop... so cn u plz tel me how to do it... rply as soon as possible... m waiting...:X[/QUOTE] [QUOTE=wondergal04;1085953]anybody plz help me.... i want code fr image viewer...[/QUOTE] You bee already given example. What is wrong … | |
Re: Official Java Sun tutorial [URL="http://java.sun.com/docs/books/tutorial/uiswing/layout/using.html"]Using Layout Managers[/URL] As for which layout is used mostly? Dunno normally I use GridBagLayout in combination in some others FlowLayout or BorderLayout. One suggestion, do not try to arrange all element through one layout. Divide it on smaller section on which you apply layout as … |
The End.