5,031 Posted Topics
Re: Sorry can't realy help with this I'm not Eclipse user, but if you willing to give a shot to IntelliJ (there is community edition for free) it has better integration of Maven. This IDE has notion of modules that acts like mini-projects where A can be dependent on B. So … | |
Re: [QUOTE=venkatesh182;1487007]Do pointers used in java?[/QUOTE] If you read previous post you would have seen [URL="http://www.daniweb.com/forums/post608694.html#post608694"]this answer[/URL] | |
Re: [GCM: Getting Started](http://developer.android.com/guide/google/gcm/gs.html) | |
Re: No, you need Java container (server). Read [here more](http://blogs.msdn.com/b/david.wang/archive/2005/10/11/how-does-jsp-work-on-iis.aspx) | |
Re: people don't you see that person is just learning ! ! ! Has no clue about buffers, streams, etc think as beginners, not like overworked crazy programmers [CODE]for(int i = normal.length; i < 0; i--) { last = normal.charAt( i); reversed += last; }[/CODE] | |
Re: I'm locking this post down as it become spamming place for some parties to advertise their sites and it may get to attention of others! | |
Re: Sorry your questions doesn't make any sense. If you do not know what architecture or type of data will be used who then? You are architect so you have to choose. As for synchronization it doesn't matter if you use mobile provider network or wireless as long you implement it … | |
Re: You failed to mentioned what does the "Excel button" execute to produce these excel reports? Are you using Jasper reports (if so then you have some configuration issues) if you produce reports manually then there is issue with your coding. Without more info nobody will able to help you. | |
Re: Depends on what logic you used in click listener. If you said start new activity and that has table in it then yes, otherwise you have to implement it | |
Re: You can use [DragonFire SDK](http://www.dragonfiresdk.com/) but it is commercial product as far I'm aware | |
Re: You need to give it your machine local IP not localhost or 127.0.0.1 | |
Re: You can use either AsyncTask or even better Loader (unlike AsyncTask Loader is not restarted on orientation change that does trigger multiple requests) to to manage downloading process and in same time to indicate to user that this is downloaded content and it will be displayed once finished | |
Re: [Jsoup](http://jsoup.org/) is good choice for parsing simple HTML in Android applications. Check this document for [data extraction](http://jsoup.org/cookbook/extracting-data/dom-navigation) | |
Re: MVC model, use JSP to show content let servelts handle logic. And yes it can be done, simple example can be see in sticky post on top of this forum about MVC 2 | |
Re: No it doesn't. What it make slow is complex nested if-else statements | |
Re: Once again you are trying to go against mobile UIX curriculum. What would be the purpose of double click on tab? | |
Re: Above approach is good 10 years old and not used anymore. You should get something more uptodate to learn from. For starter you can have look at [JSP database connectivity according to Model View Controller (MVC) Model 2](http://www.daniweb.com/web-development/jsp/threads/141776/jsp-database-connectivity-according-to-model-view-controller-mvc-model-2) | |
Re: I'm gone be rude and say: Why the hell you want to use Hibernate if you still place database connectivity code into JSP instead of Java class where it bellongs? Learn first proper MVC approach and add new frameworks | |
Re: 1. Welcome back 2. Disapointed to see that you are still using old ways (query string as add on of content instead of PreparedStatement, generating HTML inside servlet) 3. Hashing password simple private String hashPassword(String password) { String hashword = null; try { MessageDigest md5 = MessageDigest.getInstance("MD5"); md5.update(password.getBytes()); BigInteger hash … | |
Re: NO you should be writing your mini projects and that way you will learn basic components by heart and will have some general idea about existence of other components or general packages in API.Watching video or reading books is not enough, you need to practice especially in Android development. If … | |
Re: You can use HttpClient, see tutorail [here](http://www.vogella.com/articles/ApacheHttpClient/article.html) | |
Re: Did you set permissions in AndroidManifest? <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" /> <uses-permission android:name="android.permission.INTERNET" /> | |
Re: Simple you are missing content provider. Secondly what the heck you doing in that catch statment of onlick of the second class!!?? Have look at this [tutorial](http://www.vogella.com/articles/AndroidSQLite/article.html) how to do it properly | |
Re: NO! Anyway why would you want to do something like that? | |
![]() | Re: You need to explain more in details what sort of data management/transfer you need. Often simple server request with return of JSON object is good approach ![]() |
Re: You are missing ContentProvider and other stuff. Read this [tutorial](http://www.vogella.com/articles/AndroidSQLite/article.html) | |
Re: Java for mobile devices doesn't mean full size of JSE but reduced JME (Java Microedition). So you have to develop your application as midlet (that is name of apps in JME) | |
Re: You should do better search as I found this as first thing [android-contacts-contract-example](http://code.google.com/p/android-contacts-contract-example/) | |
Re: You failed to mention what was your original proposal and what was exact reason of rejections. Without that you are another member begging to get project ideas because he/she cannot be bothered... Make difference, post more [QUOTE=asler411;1692750]Need Help! Need titles urgent.. we've tried a lot but it has been rejected. … | |
Re: Have look at this project http://code.google.com/p/android-screenshot-library/ | |
Re: Question is which latform you want to develop * Android * iOS (iPhone/iPad) * BlackBerry * Windows * Qt (nokia "new" Symbian) | |
Re: You should use AsyncTask or even better Loader that will let you execute activity on thread and you will be able to start and end loader on methods that do on start and on finish | |
Re: If you want to get some help you better to post some code | |
Re: You have to have installation of [URL="http://java.sun.com/"]Java[/URL] and [URL="http://tomcat.apache.org/"]Tomcat[/URL] on your machine. Tomcat should be setup either as in this [URL="http://webdev.sis.pitt.edu/st/sec_cookie/cookie2.htm"]simple example[/URL] or this [URL="http://www.coreservlets.com/Apache-Tomcat-Tutorial/"]more specific[/URL] way. Then have look at [URL="http://tomcat.apache.org/tomcat-6.0-doc/appdev/index.html"]first deployment[/URL]. To learn more about Java and web development have look at these resources: [list] [*][URL="http://java.sun.com/javaee/5/docs/tutorial/doc/"]The Java EE … | |
Re: Should be possible with one of these mobile cross-platform frameworks like [PHoneGap](http://phonegap.com/), [rhomobile](http://www.rhomobile.com/) etc, but be warned that there aren't many free/open source, you will need to buy licence | |
Re: Can you explay what you trying to do? I ask because getLocalActivityManager() is returning deprecated class LocalActivityManager that you shouldnot really use. You should replace it with fragments | |
Re: Have button or image button click event invoke [DatePickerDialog](http://developer.android.com/guide/topics/ui/controls/pickers.html) or extend DialogFragment if using fragments and build own date picker (plenty of examples on the web) | |
| |
Re: instead of JSP use servlet, so from page1.jsp send form to servlet where you validate and process the form and after that you can get back to page1.jsp Question is why do you want to go back? It is because of error which is OK, or some other reason which … | |
Re: Have on this [blog entry](http://tokudu.com/2010/how-to-implement-push-notifications-for-android/) for general idea of "push" services | |
Re: I would recommend you to ask this question on goclever forum on similar as daniweb mobile development is more about programming issues not hardware and software requirments | |
Re: I see no issues there. If you can have your project on Github or similar just post a link, otherwise without seeing rest of the code it is unlikely someone may be able to help. | |
Re: I guess it it time to use my time tracking moderator option and close this thread before more future time travellers decides to advertise their time trackers... | |
Re: Jackson library is capable of it, see this [blog entry](http://jackson-users.ning.com/profiles/blogs/experimental-support-for) | |
Re: Without seeing actual code, database table structure and any exception/error messages nobody can advice | |
Re: Yes, create same layout for activity or fragment and on button click execute POST request as it is provided in web form, with parameters attached that you get from your for. Check for login tutorials with HttpClient | |
Re: dskumar_85 please do not flood forum with same quoestions in mutiple posts! | |
Re: In the future you should click on "Flag Bad Post" and leave message such as "Please move it to XYZ section" and first admin/moderator seeing it will take care of it. Given that you already made new post in JavaScript section you should mark this post as solved | |
Re: You need to extract this file and you will get 3 JAR files (poi-3.2-FINAL-20081019.jar, poi-contrib-3.2-FINAL-20081019.jar and poi-scratchpad-3.2-FINAL-20081019.jar, most of the times you will need only poi and poi-scratchpad) plus other documentation. Then you have to attach it to your project like [URL="http://www.cs.duke.edu/courses/cps004g/fall05/assign/final/addlibrary.html"]here[/URL] | |
Re: You should have posted config files. Obviously you did some custom config and that is why it is complaining |
The End.