MyEclipse 8.0 is released

Today Genuitec announced that MyEclipse 8.0 is released.
What is the MyEclipse?
MyEclipse is the most affordable and comprehensive J2EE IDE and Web development tool suite for the Eclipse open-source platform. MyEclipse is the Eclipse plugin-based solution for all your UML, AJAX, Web, Web Services, J2EE, JSP, XML, Struts, JSF, Java Persistence, EJB, extended database support and . . . → Read More: MyEclipse 8.0 is released

  • Share/Bookmark

NetBeans IDE 6.8 Release Candidate 1 is out

Great news for developers who use NetBeans. Version 6.8 RC1 is released. Details about this release you can find here. Download this release you can hereNetBeans 6.8 — New and Noteworthy Continue reading NetBeans IDE 6.8 Release Candidate 1 is out

  • Share/Bookmark

Converting array to list and list to array in Java

I don’t understand why I can’t keep in mind these simple methods.
Last months I used them very often, these methods are very useful.Today I had simple task and I searched in the internet these methods because I couldn’t recollect them.
I am going to show simple example where I will use these methods. After this post I will know where I can find them if they will need. Continue reading Converting array to list and list to array in Java

  • Share/Bookmark

Using file templates for adding new data in generated files in NetBeans 6.7.*

As I wrote in previous post it is easy to customize file templates in NetBeans.

But there I showed how you can change only author’s name.

Here I am going to show how you can change template by adding new variable.

This variable called site and its value is http://thedevelopersinfo.com. Continue reading Using file templates for adding new data in generated files in NetBeans 6.7.*

  • Share/Bookmark

Using file templates for customizing author in generated files in NetBeans 6.7.*

Company’s code convention dictates own way in writing code. You need to put licence at the top of the file, write detailed descriptions of the class, set who is an author, set version of class or interface, comment your methods and so on.
At this time if not all but most of the IDE allows to automate this process.
And now I am going examine how we can do it in NetBeans 6.7.*.
But in this post I am going to show only how to change @author tag.
Developers who use NetBeans in daily job saw that after creating Java class or interface @author tag sets value automatically. But this value is simple user.name variable. Continue reading Using file templates for customizing author in generated files in NetBeans 6.7.*

  • Share/Bookmark

Opening browser with specific URI in Android

Sometimes you need to open browser with specific URI from your application.
For example you want to show application’s page and so on.
This operation is very simple.
You need to use Activity as usual you use it for walking from one activity to other.
In this post I am going to show snippet of code about how you can . . . → Read More: Opening browser with specific URI in Android

  • Share/Bookmark

Using arrays from arrays.xml in Android

There is a possibility to store arrays in application package. You need to create file arrays.xml under /res/values. In this file you can save arrays as much as you want. Also it is easy to get them from this file.
I found it very useful and I am going to share this information. Continue reading Using arrays from arrays.xml in Android

  • Share/Bookmark

Using files as raw resources in Android

Why need such type of resources, we can get data from /assets, /res folders and now I am going to show /res/raw folder.

It is simple, raw resources are not compiled by the platform, they available as raw files and these files can refer to any type of files. When you need to include raw files in your application you can do so using /res/raw resources location. When you will place files here, they will be available as raw resources. Continue reading Using files as raw resources in Android

  • Share/Bookmark

Wallpaper Changer 1.2 is in final stage of testing

Great news for people who waits Wallpaper Changer application.
This application is in final stage of testing. We want to inform that new version will be accessible in Android Market since 1-st December.
There are 2 applications:

full version
trial version which has full functionality but it is working only 15 days. We analyzed and understood that we can receive . . . → Read More: Wallpaper Changer 1.2 is in final stage of testing

  • Share/Bookmark

Using filesystem in Android

You can use Android’s filesystem the same as you use it in your life. Creating, editing, deleting, reading and etc.

I want to remember that filesystem is based on Linux. Android allows to use full advantages of java.io package when you are working with it without limitations. Continue reading Using filesystem in Android

  • Share/Bookmark