5,031 Posted Topics
Re: What you are looking is emulator that is part JME 3.0 SDK or with custom SDK of manufacturers. You can find links in [this post](http://www.daniweb.com/software-development/mobile-development/threads/302854/starting-mobile-development-sdk-tutorials-resources-faq) (some may be little out of date) | |
| |
Re: [Google Analytics](http://www.google.co.uk/analytics/) also you can learn some stuff from [Google Webmaster Tools](http://www.google.com/webmasters/tools) | |
Re: [Member rules](http://www.daniweb.com/community/rules) - Keep It Organized : Do provide evidence of having done some work yourself if posting questions from school or work assignments | |
Re: > Its not showing apache servers.... You failed to reply to tux4life question. Which [Eclipse download](http://www.eclipse.org/downloads/) option did you used. If you didn't used Eclipse IDE for Java EE Developers you wouldn't find option to add server | |
Re: Follow [Integrating Felix with NetBeans](http://felix.apache.org/site/integrating-felix-with-netbeans.html) and then add as need it stuff from [Apache Felix OSGi Tutorial](http://felix.apache.org/site/apache-felix-osgi-tutorial.html) PS: Binding your slef to IDE is bad appraoch, IDE is only tool to help you to manage project, not tool to solve your problem... | |
Re: Forum rules: Do provide evidence of having done some work yourself if posting questions from school or work assignments | |
Re: You better create your tables with appropriate charset parameters something along the line of CREATE TABLE IF NOT EXISTS `test` ( `id` int(10) NOT NULL, `name` varchar(10) collate utf8_unicode_ci NOT NULL ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; | |
Re: If you do not want to use emulator and you do not want to rewrite it to Java you cannot because your pc wouldn't understand in which order to run steps and how to handle stuff comming from or requested by apk | |
Re: And what exactly "browser support code" is supposed to mean? | |
Re: Time to learn difference between JSP (Java Server Pages) and JS(JavaScript). Post moved to Java Script section | |
Re: Have look at http://docs.oracle.com/javaee/5/tutorial/doc/bnagx.html | |
Re: Check GlassFish log folder for log file and check for full error description. However from above it does look like you are requesting page doesn't exists, in many case type in name | |
Re: 1.) Having two operating systems in dual boot has no effect on pc performanc (only if you would run virtual machine over other OS) 2.) You can easily remove Windows partition with help of utils, start reading this https://help.ubuntu.com/10.04/hardware/C/disks.html | |
Re: @tux why to bother with nasty csv when you can have proper Excel doc? [Apache POI](http://poi.apache.org/spreadsheet/index.html) magic rediscovered :P | |
Re: Forum rules clearly statets: >Do provide evidence of having done some work yourself if posting questions from school or work assignments So what have you done so far? | |
Re: Well here is news for you Android is based on Java therefore if there is some process of "encode-decode" it will be Java based. By-the-way I believe you mean encrypt-decrypt since encoding is just saying which set of characters to use sample: UTF-8 You are more then welcome to use … | |
Re: Why do you start two different post for same discussion topic? Thread closed, please continue discussion [here](http://www.daniweb.com/software-development/java/threads/443635/java-certification) | |
Re: Read [Processing XML with Java](http://cafeconleche.org/books/xmljava/) has plenty of examples dependent only on SAX. PS: Tell who ever said no to 3rd party libraries that he is idiot | |
Re: Create nested/subquery query, you can read more on that for example on [MySQL](http://dev.mysql.com/doc/refman/5.0/en/subqueries.html) | |
Re: How did you setup Android? What fif you set in AVD device when adding new device? What are your pc specs and OS? | |
Re: If you ever did any Java AWT/Swing development Android Activity would be something like your application frame, where Fragment is more like View that you can dynamically swap as need it. Therefore in most cases it does make sense for Activity to be data handling part. | |
Re: If you had posted in correct place on first time you would have seen this thread [Starting mobile development [SDK / tutorials / resources / faq] ](http://www.daniweb.com/software-development/mobile-development/threads/302854/starting-mobile-development-sdk-tutorials-resources-faq) PS: I would discourage to use roseindia as content is not organized at all and it is rip of various books and resources. … | |
Re: [9 patch image](http://developer.android.com/tools/help/draw9patch.html), mark streching part and you done, Android whatsup application using it... | |
Re: I do not see in your query any http request happening you may want to have look at [stackoverflow](http://stackoverflow.com/a/6218563/209574) for example | |
Re: [Android face recognition example](http://lmgtfy.com/?q=android+face+recognition+example) all what you need it | |
Re: Why not use ArrayList or other similar Collection that can dynamically change size instead of defined size? Or why do you want to change value to zero and move it to end of array? | |
Re: @touw_22 please create new thread and ask there. At the moment you are hijacking someone else post, similar need doesn't mean same. | |
Re: I do mobile dev but the other side of wall with Android. I like products from JetBrains like IntelliJ IDEA that is for Java and Android development, seen their WebStorm in action which was very nice, so maybe their [AppCode](http://www.jetbrains.com/objc/) could be nice. However only commercial licence available for it | |
Re: never try it before, but apparently changing properties of UIManager before creating progress bar should work. Something like this [code]UIManager.put("ProgressBar.selectionBackground",Color.BLUE); UIManager.put("ProgressBar.selectionForeground",Color.WHITE); JProgressBar progressBar.....[/code] | |
Re: For the database import, before you attempt to import the "flat" file data in, you need go to your local DB (MySQL) and create new database [code=sql]create database DATABASE_NAME;[/code] After that you can import. | |
Re: @SagarSe7en you wouldn't believe when I tell that most of us are working so can only reply once off work, therefore can not per posters asap demand (sorry for sarcasm, couldn't resist) To add on what _avd already provided I need to remind that data should be stored as BLOB … | |
Re: Off topic: >Firefox os is also on the rise since the mozilla community is one of the largest open source families Guess you failed to count in Apache community | |
![]() | Re: Not relevant to Java Server Pages, moving to JavaScript |
Re: Justed puted your code between tags so it more readable. Please use them in the future... [code=java]import javax.swing.JOptionPane; public class ComputeTaxWithMethod { public static void main (String [] args) { // Prompt the user to enter filing status String letters = JOptionPane.showInputDialog( "Enter the filing status:"); int status = Integer.parseInt(letters); … | |
Re: You should have either web service, or sort of interface that you call on example `mysite.com/products?category=all` or `mysite.com/events?country=UK&city=London` where in URL you submit has all data you need for server side so it then can call on DB and return result in some sort of data format (JSON is most … | |
Re: * Reduce duplication and therefore many places to change if same string declared in multiple places * Easy way of managing and sharing resource that has to be translated if you need internatioanlization for application | |
![]() | Re: You need to read on game development as it explains how drawing works in Android. However you still would need basic knowledge of Android. |
Re: If `R.layout.activity_login` is the menu XML as posted above then you are doing it wrong since you cannot force menu resource instead of layout resource in place where layout resource expected. Layout have to use one of available layout classes (LinearLayout, RelativeLayout, GridLayout etc). Where menu on other hand is … | |
Re: Your server side should be working like website/web application listening for specific HTTP request. Then it should process request and return data in som form. The easist would be return the reply as JSON object that is simple to use in Android. If however you will be returning set of … | |
![]() | Re: You can use that if you declare custom actions as for Android uses for example ACTION_VIEW, ACTION_EDIT, ACTION_MAIN. I do not recommend that since you just starting to learn. You better of with following constructor new Intent(Context packageContext, Class<?> cls) where you can get context by calling `getApplicationContext()` in application … |
Re: @BigPaw this is not what app should I download question, but rather how to do it @bettybarnes simple solution like [this](http://stackoverflow.com/questions/10881686/my-own-stopwatch-in-android) harder solution you need to learn about background processes and services | |
Re: Do you have in your AndroidManifest.xml declaration of camera usage? <uses-permission android:name="android.permission.CAMERA" /> <uses-feature android:name="android.hardware.camera" /> <uses-feature android:name="android.hardware.camera.autofocus" /> | |
Does anyone can recommend some application to play Blu-ray on pc? I have CyberLink PowerDVD 8 that came with optical drive, but often there is a lag (visible stop in playback). I would love if VLC player people added BR support to application, but at the moment libbluray is more … | |
Re: Wouldn't be easier to use fragments that can always query parental activity for "super" data and fragments do the rest of interaction? | |
Re: I guess you will have to create a class/collection that will hold coordinates for google maps like this https://maps.google.com/maps?q=Slovakia&hl=en&sll=37.0625,-95.677068&sspn=46.946584,92.900391&t=h&hnear=Slovakia&z=8 . So you may have something like Map<String, URL> countryMap = new HashMap(){}; countryMap.put("Slovakia", new URL("https://maps.google.com/maps?q=Slovakia&hl=en&sll=37.0625,-95.677068&sspn=46.946584,92.900391&t=h&hnear=Slovakia&z=8"); PS: Above link was achieved just by typing country name in google maps and then … | |
Re: Please post the code and error received and we will try to assist | |
Re: You should be querying webservice and not directly database. Exposing database to outside world is like telling world "hey here are my user data share it..." | |
Re: [QUOTE=warlord902;1628155]I have no problem getting an access token manually. Till now for developing I was fetching the access token manually but now I need to embed this process in my application as well. So I was wondering how should I make my application written in java to communicate with web … | |
Re: [QUOTE=ccube921;758925]PEOPLE WITH SCRIPTS TURNED OFF DO NOT DESERVE TO UISE THE INTERNET!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! (in my humble opinion, of course)[/QUOTE] And what about people misusing script capabilities to spread havoc on others machines, what do they deserve? Every coin has two faces... |
The End.