5,031 Posted Topics
Re: The answer is more complex as you would have to more about the PDF and what sort of comparison they looking for. PDF can be representation of text or image. Therefore you could read the document and then compare documents by comparing leafs/children (PDF is essentially xml document), or you … | |
Re: I do use IntelliJ IDEA that once you right click on the file you can find Local History option in the pop-up. Trough there you you can reverse/compare changes up-to certain point. Same way works also NetBeans. For Eclipse, [URL="http://help.eclipse.org/helios/index.jsp?topic=/org.eclipse.platform.doc.user/gettingStarted/qs-55.htm"]check this[/URL]. If you used something else you would have to … | |
Re: [LIST=1] [*] Install Java [*] Depending on installation you used Java location will be either C:\Program Files\Java\jdk-VERION_NUMBER for 64bit or C:\Program Files(x86)\Java\jdk-VERSION_NUMBER you will need to copy somewhere this location (Ctrl+C will do it, then just Ctrl+V to insert while need it) [*] Right click “My Computer” [*] From pop-up … | |
Re: Never did such thing, but I guess [URL="http://download.oracle.com/javase/6/docs/api/java/awt/image/BufferedImage.html"]BufferedImage[/URL] with its [URL="http://download.oracle.com/javase/6/docs/api/java/awt/image/BufferedImage.html#setRGB(int, int, int)"]setRGB(int x, int y, int rgb)[/URL] or perhaps [URL="http://download.oracle.com/javase/6/docs/api/java/awt/image/BufferedImage.html#setRGB(int, int, int, int, int[], int, int)"]setRGB(int startX, int startY, int w, int h, int[] rgbArray, int offset, int scansize) [/URL] (not sure about this one) | |
Re: Set method or so often setter method is basically opposite of get method. Where in get method you are getting value of the variable with setter you do set it up. It is also conventional way how to provide access/option to change variable value without making this variable public. So … | |
Re: As mentioned so many times before and now again (since you did not try to search forum) read Beginning J2ME From Novice to Professional - chapter 10 [URL="http://books.google.com/books?id=chepSC2iAB8C&lpg=PP1&dq=beginning%20j2me&pg=PA143#v=onepage&q&f=false"]Connecting to the World [/URL] that will show you have to make HttpConnection with JME and then only thing you need to do … | |
Re: You need to use HTTP, so check API for classes as HttpConnection etc. Here is sample how to read from web - [URL="http://www.devx.com/wireless/Article/39810/1954"]Connecting to the Web: I/O Programming in Android[/URL] | |
Re: WaltP I had already discussing this with Dani in [URL="http://www.daniweb.com/forums/post1367013.html#post1367013"]mod section[/URL]. The final reply was [quote]I agree that it is confusing that you cannot take back a vote. I hope to be able to fix that in the near future. Hopefully, when that is implemented, the whole process will make … | |
Re: @mahban 1. Post moved [QUOTE]Do not hijack old threads by posting a new question as a reply to an old one[/QUOTE] 2. This is not 24/7 coding service for lazy people, [URL="http://www.daniweb.com/forums/announcement8-2.html"]We only give homework help to those who show effort[/URL] | |
Re: Post moved since original question was on Android learning materials and you asking about Symbian learning materials. Please do not hijack threads with your own question, one of the forum rules Are you sure you want to learn Symbian instead of Qt? Symbian is dying out and sole producer of … | |
| |
Re: The question is? And the code you try to achieve this so far? | |
Re: [QUOTE=Dean_Grobler;1460633]Thanks man! Really appreciate your help, you seem to have completely taken over the Java Forum here on DaniWeb. The only person that ever replies...[/QUOTE] Well you just offended another 8 people at least that are regulars here Besides as masijade mentioned you shouldn't be messing with CLASSPATH or PATH … | |
Re: [URL="http://lmgtfy.com/?q=java+speech+api+example"]Java speech API example[/URL] | |
Re: Nice job, already works under FF kkeith29 will provide more updates later | |
Re: Try to run clean build, can be that something got messed up since last changes. What clean build should do for you is remove all *.class files and then either automatically or let you compile whole project again. If you using Maven with your project, then look for "mvn clean" … | |
Re: look on this [URL="http://docs.jquery.com/Plugins/validation"]example[/URL] from jQuery, te email field does essentially what you looking for. You will just need to change events | |
Re: @Manojo7 you better pick up some more up-to-date book as nobody these days does Java web development by writing html into Java Something like [URL="http://books.google.co.uk/books?id=15wp6fmAy4sC&lpg=PP1&dq=head%20first%20servlet&pg=PP1#v=onepage&q=head%20first%20servlet&f=false"]Head First Servlet & JSP[/URL] would be good choice | |
Re: Available [URL="http://www.manning.com/walls4/"]here[/URL] in Manning Early Access Program. PS: I hope for your own good you weren't looking for illegal download links as that is strictly forbidden by our forum (read [URL="http://www.daniweb.com/forums/faq.php?faq=daniweb_policies"]member rules[/URL]) | |
Re: I would suggest to ask this on their [URL="http://community.jboss.org/threads"]forum [/URL] | |
Re: You are looking for something like that for desktop application or you want to do it for web application | |
Re: 1. Post the code you actually trying to compile (just to make sure you are not having some errors in it) 2. Post your Java installation details (Java version, where installed, your path value) | |
Re: Yes, that should be possible since you want to just remove a certain data and not entire thread as some students when cheating on school work ;). Can you point the posts (sorry I feel lazy to go through each of your posts to find it out :) ) | |
Re: That connection string doesn't look right, check [URL="http://support.microsoft.com/kb/313100"]this documentation from Microsoft[/URL] | |
Re: Do you think that user of your application will be interested in reading your code and seting all variables by him self? Or do you think all variables are always initialized? | |
Re: That code is OK. My best guess will be that you either didn't close RecordStore properly or by some mistake you reusing original store before insert of new record. You can find work RecordStore application example [URL="http://peterscorner.co.uk/2009/05/22/contact_sorting_contact_list_part_3.html"]here[/URL]to compare ideas/solutions | |
Re: JavaScript is not JSP (Java Server Pages). Moving to correct forum section | |
Re: You would need to ask Sun for such info. They do not need to go public like Microsoft and 9year old girl. | |
Re: Thread close as there is duplicate [URL="http://www.daniweb.com/forums/post1457736.html"]here[/URL]. Please follow discussion there. | |
Re: and here is what we ask you [URL="http://www.daniweb.com/forums/announcement8-2.html"]TO-DO[/URL] first | |
Re: Here is correction, instead of next you should use nextLine [code]import java.util.*; import java.lang.*; import java.io.*; public class Exer6 { public static void main(String args[]) { String[] dummy1, dummy2, dummy3, dummy4, dummy5, dummy6, dummy7; String[] reservew = {"abstract", "boolean", "break", "byte", "case", "catch", "char", "class", "const", "continue", "default", "do", "double", … | |
Re: As it is telling you [icode]SessionExtender cannot be resolved[/icode] either you wrongly referenced that class or you are completely missing it. | |
Re: If you "tried a lot" then you wouldn't mind to show us that code. So post your code and hopefully someone may help you. | |
Re: [URL="http://www.daniweb.com/forums/announcement8-2.html"]We only give homework help to those who show effort[/URL], so when you have some code to show and discuss with us then come back | |
Re: Then use [URL="http://itextpdf.com/itext.php"]iText[/URL] or similar library | |
Re: "Some features of my project is not running on internet explorer and some are not running on Mozilla Firefox" @manish250 - so much for description. Not running which IE 5/6/7/8? Besides this is not much of JSP issue as Active X and IE... Also it would be good idea to … | |
Re: Hardly an explanation of what sort of suggestions you are expecting.Nevertheless, lets start with that you should learn Hibernate, you should be able to you Log4j or similar to monitor and record any errors on your application runtime and you should choose some web framework since Java web development is … | |
Re: Well I will ignore your note on "creating application using jsp" and will continue with rest If you wish to work with JSP on mobile phone you will not create JAR but use limited browser capability of your phone(as long it is not PDA or some other advance device with … | |
Re: Definitely not possible with JavaScript/Ajax as this are mostly used for enhancement effects on web and not hard coding | |
Re: @beejay321 as you may have already found from personal message sent to you, your behavior is inappropriate. If you want help you need to cooperate and investigated recommended resources. If you believe answer from another member is inappropriate then use "Flag Bad Post" button let the moderators/admins know there is … | |
Re: TableItem is not standard component of JME (Nothing in [URL="http://download.oracle.com/javame/config/cldc/ref-impl/midp2.0/jsr118/index.html"]official API[/URL]). You can see it in various plugins for IDEs like [URL="http://netbeans.org/kb/docs/javame/tableitem.html"]NetBeans[/URL] so be careful with deploying it on real device (you should test it). This sort of things is either done with list where you show basic data and … | |
Re: 1. Post move to new thread 2. We do not like people hijacking other people questions 3. We like people to explain problem in details (any idea how deep is topic you asked about????) 4. We are not code house where you submit idea and we spill solution for you, … | |
Re: [QUOTE=Shanti Chepuru;1451373][url]http://books.google.co.in/books?id=15wp6fmAy4sC&pg=PA466&lpg=PA466&dq=%3Cc:url+value%3E+in+form+tag+jsp+means&source=bl&ots=SMEGUt4poS&sig=dcBZbxomDok5sI38HAZHTMJTdqo&hl=en&ei=GYc6TYXxFNDirAeth9C5CA&sa=X&oi=book_result&ct=result&resnum=3&ved=0CCQQ6AEwAg#v=onepage&q=%3Cc%3Aurl%20value%3E%20in%20form%20tag%20jsp%20means&f=false[/url][/QUOTE] The link doesn't work for me. Are you sure is it correct? | |
Re: Since it is Java based project you need to know Java of course. You should know how to query database from Java and maybe look on some Jaav web frameworks to see which does satisfies your needs or learning curve for a time period allowed for the project | |
Re: @pranjli digging out 6 years old thread is bad idea. start new thread and maybe somebody will reply (depends on quality of question you ask, above was bad case) Thread closed | |
Re: @lisaroy1 your post been moved out of Starting "Java" [Java tutorials / resources / faq] thread as it already sparkled discussion to which I wish to also add to let people see why serious developers consider that site rubbish. As masijade already said they using out of date examples and … | |
Re: 1. Database connectivity form page view (JSP) - bad, read [URL="http://www.daniweb.com/forums/thread141776.html"]JSP database connectivity according to Model View Controller (MVC) Model 2[/URL]to get basic idea of better approach 2. Absolute file path - bad, tell your web application through web.xml or other configuration file, if using framework, where to find directory … | |
Re: Your classpath is looking wrong, can you explain double slashes you used? [icode]set classpath=%classpath%;.[COLOR="Red"][B]\\[/B][/COLOR]lib[COLOR="Red"][B]\\[/B][/COLOR]gif4j_pro_trial_2.3.jar;[/icode] Also why don't you add this library through IDE to your project so it is automatically included in your application release, instead of manually adding this library to any computer you wish to run it on? | |
| |
Re: @hellB0y you cannot post in simple html format. Forums do not allow it these days as malicious JavaScript may be introduced into page html code that is unwelcome. You can only use graphics provided by forum (these are smileys), if you wish to add own graphics you can upload it … |
The End.