Search Results

14
votes
16answers
1k views

Packaging Java apps for the Windows/Linux desktop.

I am writing an application in Java for the desktop using the Eclipse SWT library for GUI rendering. I think SWT helps Java get over the biggest hurdle for acceptance on the desktop: namely provid …
1
vote
3answers
366 views

JAXB 2 in an Oracle 10g Webapp

I have a web application that uses JAXB 2. When deployed on an Oracle 10g app server I get errors as soon as I try to marshal an XML file. It turns out that Oracle includes JAXB 1 in a jar sneaki …
3
votes
4answers
1k views

“loader constraints violated when linking javax/xml/namespace/QName class” from webapp on Oracle 10g

We have a web application that can be deployed on many application servers, including Oracle 10g. On that platform, however, we are having classpath issues. The webapp uses JAXB 2, but Oracle 10g …
0
votes

Packaging Java apps for the Windows/Linux desktop.

Thanks for that, but it seems a little out of my price range. I'm really looking for something free or, at least, cheap. Hence, rolling my own is definitely an option. …
0
votes

Packaging Java apps for the Windows/Linux desktop.

Another option I was considering: rather than writing a native launcher from scratch, Eclipse comes with the source code for its own launcher, and this could perhaps be repurposed for my app. …
0
votes

Java File IO Compendium

Read a file one line at a time using a BufferedReader and the .readLine method, similar to @warren-taylor's answer for part 1. public static void readFromFile( String filename ) …
3
votes

Do I need a Mac to to make a Java application bundle?

A Java application bundle on OS X is nothing more than a directory containing your .jars and a number of configuration files. The SetFile tool sets a custom HFS filesystem property on the director …
2
votes

How Would You Programmatically Create a Pattern from a Date that is Stored in a String?

I'm not sure there's any easy way to parse a date and work out its pattern, but I would have thought that the pattern for the one you posted would be: EEE MMM dd HH:mm:ss zzz yyyy …
4
votes

Is there a way to embed a browser in Java?

You could use SWT for your GUI. Its Browser control allows you to embed IE, Mozilla or Safari (depending on the platform you're running in) …
0
votes

Prevent SWT scrolledComposite from eating part of it’s children

Try setting .setMinWidth and .setMinHeight on the ScrolledComposite once the layout has been done, passing it the size of the main composite. …
7
votes

Activex from java application?

I don't think there's a way to do this without resorting to a third party library. (Or rolling your own, but you did say "easily".) SWT …
1
vote

Polymorphism in JAX-RPC web services

I don't think JAX-RPC supports polymorphism in that way. I had a similar problem, and had to work around it by creating a class that had just two members - one for each of the two classes that cou …
0
votes

SWT Image concatenation or tiling / mosaic

Presumably not every image is visible on screen at any one time? Perhaps a better solution would be to only load the images when they become (or are about to become) visible, disposing of them whe …