Posted on August 18th, 2010 by Paritosh Ranjan
The database in an Android application is available only to the application which created it. In normal scenarios, applications need to share data quiet frequently. There is a concept of content provider in Android which can be used to share data between different applications. The content provider is a type of data store which has [...]
Filed under: Android | 3 Comments »
Posted on August 17th, 2010 by Harsh
When it comes to performance testing and especially using open source tools such as JMeter, it is often observed that testers(especially from black box background) have a hard time. For simple scenarios such as analyzing performance of different pages in a website wherein the pages can be directly accessed through URL directly, writing JMeter scripts [...]
Filed under: Performance, Testing | 2 Comments »
Posted on August 16th, 2010 by Richa Singhal
If you want to have Marquee effect i.e automatic scrolling of text from left to right or down to up in JavaFx, you need to write a custom component of your own. Using a Marquee tag of HTML doesn’t work, if you try to use directly in a label text or a swing component in [...]
Filed under: Creativity, HTML, Java, JavaFX, UI | 3 Comments »
Posted on August 16th, 2010 by Paritosh Ranjan
Android uses SQLLite, which is an open source SQL database system for storing persistent data. The database that you create for an application is only accessible to itself, others applications won’t be able to access it. Android provides API’s to interact with the database which are quite easy to use. The performance of the database [...]
Filed under: Android, Mobile | 2 Comments »
Posted on August 13th, 2010 by Rahul Sharma
Often we have the requirement of reading different types of files e.g. CSV, PDF, XLS files and there can be many more types need to be read in an application. One way, we try to implement such a requirement is by using separate readers for all of them and may use different frameworks for analyzing [...]
Filed under: Java | No Comments »