How to show Alert Dialog in Java Swing?
Displaying a simple message box or an alert dialog with an Ok button can be done with just one line of code as show below:A) Without a JFrameJOptionPane.showMessageDialog(null, "Message goes...
View ArticleHow do you create a simple Swing based Window with Frame?
importjava.awt.EventQueue; importjavax.swing.JFrame; publicclass MainWindow { privateJFrame frame; /** * Launch the application. */ publicstaticvoid main(String[] args){...
View ArticleBuilding a TODO List app in Android using SQLite
Storing data locally in Android is very easy. Here are few ways we can do it:Using SharedPreferencesUsing FilesUsing SQL databases.This tutorial will tell you how to save data using SQL databases. For...
View ArticleUsing Location Services in Android
Ladies say that men are always reluctant to ask for directions. that is why one day they created Google Maps. People are getting lost a lot less now and avoiding a lot of arguments over that. Google...
View ArticleSending SMS using Android
SMS - Short Message Service is very effective and quick way of communication. Your app may have a use case wherein it needs to send SMS to someone. So lets see how it can done, it is relative simple as...
View ArticleGame development in Python
The scripting language Python is easy to use, and thus very convenient to program simple games. And to make it even simpler, there one Python module which is dedicated to games creation: pygame. It...
View ArticleHTML5 specific new tags
The web has significantly evolved during the last years. Blogs, social networks, and web-based applications are some modern applications of the Internet that were never even imagined when the HTML 4.01...
View ArticleYour branch is ahead of 'origin/master' by 3 commits - Git
Error On trying to update files (pull) from the master branch into your local in GIT, the following error shows up:# Your branch is ahead of 'origin/master' by 3 commits.SolutionCheck your working...
View ArticleSend SMS from App using Email to SMS Gateway
Want to send SMS to a mobile phone from your app. Don't have an SMS API that you can use? We can Email to SMS Gateway approach instead. Basically almost all the telephone carries generally expose an...
View ArticlePlaying a video in Android from SD card
Today I bring you another tutorial in Android, how to play videos thorugh your application when video are in an SD card. Sounds like an everyday scenario, I know. There are a lot of video players out...
View ArticlePlaying a video in Android from SD card
Today I bring you another tutorial in Android, how to play videos thorugh your application when video are in an SD card. Sounds like an everyday scenario, I know. There are a lot of video players out...
View ArticleHow to show Alert Dialog in Java Swing?
Displaying a simple message box or an alert dialog with an Ok button can be done with just one line of code as show below:A) Without a JFrameJOptionPane.showMessageDialog(null, "Message goes...
View Articlejava.lang.NoClassDefFoundError: com/google/common/base/Function : Jetty...
ExceptionJetty server fails to start and throws the following Exception:584 [main] WARN org.mortbay.log - failed HandlerCollection@1fff293: java.lang.NoClassDefFoundError:...
View ArticleCaused by: java.lang.IllegalArgumentException: invalid target release: 1.7 -...
UsecaseBuilding DropWizard using Maven via command line.<groupId>com.codahale.dropwizard</groupId> <artifactId>dropwizard-parent</artifactId>...
View Article