java-libraries

Using Java and any external libraries, how can I draw latitude/longitude points onto a graphical representation of the Earth?

I'm currently using the Java Map Projection Library (I was able to obtain the code used for the Applet from the author and modify it for use in a desktop application - not sure if he linked to that on his website yet) to draw a map of the Earth in an application. However, I want to take this a step further. I have a set of latitude/longi...

configuration for java class library on tomcat distibution

What is the best practice for configuring a java class library? At my work, i am writing a class library. Some of the classes needs a configuration to work with our system setup. This configuration may change, and the distribution of the jar file takes a lot of time, as it is going through a lot of test layers. How do i do the configu...

Java library to display Excel data

On one of our Java application screens, we want to display data loaded from an Excel file on a Excel-like spreadsheet component. The component has to be able to evaluate the formulas within the spreadsheet and also preserve the general cell formatting as in the loaded Excel file. We have to be able to programmatically change cell values...

Basic Java/Eclipse problem: standard libraries cannot be imported in Android project

Hi there, I'm new to Java/Eclipse/Android, so this is probably an easy (if not stupid) question: After creating a new Android project, I want to import some (what I think are standard) java libraries. However, some import statements throw an error: HelloAndroid.java: import java.awt.Color; (The import java.awt.Color cannot be resol...

java gis library

What is the best/user friendly GIS/arcGIS Java library for basic academic assignment? ...

Java library suggestions for implementing a custom web server

I would like to create a web server that will serve/accept json files through REST. The JSON files being served will come from a database query and format the results into JSON. Any suggestions for a good java library. I have tried using Apache HTTPComponents. While maybe I can just create a servlet but I am not really allowed to install...

Java library/API to help run windows commands

Is there a Java library/API available to interact with Windows OS, like executing commands on the command prompt and returning the output back to the program? ...

How to download jars from Maven Central without writing any pom.xml

Hi, I would like something like the following. I want just an utility that is able to download jars and their dependencies from the Maven Repository without imposing no constraints on how my project should be built. I would like something like this: download-jar --dest=lib/ 'commons-io:commons-io:jar:1.4' It should be able to downlo...

Java library to map request parameters onto an object

I have used stipes on a project in the past, and it has a great TypeConverter library that can take request parameters and route them into JavaBeans. It can even handle maps and arrays, such that: class A { private int num; private Map<String, Integer> map; private List<String> list; ... setters and getters ... } <input type='text...