Questions tagged [jdic]

JDIC is the Java Desktop Integration Components (JDIC) project, an attempt to improve Java apps' access to the underlying OS' facilities.

The Java Desktop Integration Components (JDIC) project provides components which give Java applications the same access to operating system services as native applications. For example, a Java application running on one user's desktop can open a web page using that user's default web browser (e.g. Firefox), but the same Java application running on a different user's desktop would open the page in Opera (the second user's default browser). This is intended to counteract the common UI problem where Java applications' GUIs resemble only other Java applications, not applications native to the OS that they are running on.

15 questions
23
votes
3 answers

Start Mail-Client with Attachment?

I'm currently searching for a way (in Java) to start the default mail client with defined receiver, subject and body and with a predefined attachment. Due to the limitations of the RFC the java.awt.Desktop.mail-Method is not working with…
schlingel
  • 8,560
  • 7
  • 34
  • 62
12
votes
7 answers

NetBeans error: package org does not exist

I just installed Netbeans IDE. I am now unable to import any org.* libs and it just says package org does not exist. Also, I imported jdic.jar into the project and even though the code completion suggestions show up as org.jdesktop.*, it shows the…
Anirudh Ramanathan
  • 46,179
  • 22
  • 132
  • 191
8
votes
2 answers

Equivalent to JDIC?

Apart from JDIC, does anyone know a project working towards desktop/Java integration?
user316186
  • 111
  • 2
3
votes
1 answer

Is 64bit jdic libraries available for solaris?

Does anyone know if there is a way to make jdic work in solaris (64bit version)?? I could only manage to find 32bit jdic libraries :( Thanks in advance.
user316186
  • 111
  • 2
3
votes
2 answers

FATAL ERROR in JNI code - presumably in JDIC library

I am using a Java coded desktop application to track my time on projects. I used it until the IT did a new setup on my station. And now I cannot launch this application. I got a log file when I launch it saying: # # A fatal error has been detected…
Valentin Jacquemin
  • 2,215
  • 1
  • 19
  • 33
2
votes
2 answers

When will the 64-bit version of JDIC be available?

My Java program needs lots of memory to run, the 32-bit version of Java max out at 1.5 GB, my system has 4 GB of RAM, so I decided to run it under the 64-bit version of Java, and yet the JDIC won't work, which affects my program, so I wonder if…
Frank
  • 30,590
  • 58
  • 161
  • 244
2
votes
2 answers

What happened to JDic? Any replacement project?

I'd always heard of the JDic project being around, but never really had a need for it until now (I'm looking to register file associations with Java, and it seemed like the most promising solution.) However, upon going to its project page (the only…
Michael Berry
  • 70,193
  • 21
  • 157
  • 216
2
votes
2 answers

File Explorer - Altering File/Folder associated icon programmatically

Have you noticed modifications to the icons associated with files and folders when using file explorer in windows/linux while having a svn client installed (e.g., TortoiseSVN). Basically, when a folder is saved in a SVN repository, normally there is…
Ali Salehi
  • 6,899
  • 11
  • 49
  • 75
2
votes
1 answer

Java JDIC error message

I have the following line in my Java app, and it's causing the following error message : WebBrowser webBrowser=new WebBrowser(); org.jdesktop.jdic.init.JdicInitException: java.io.IOException: The filename, directory name, or volume label syntax…
Frank
  • 30,590
  • 58
  • 161
  • 244
1
vote
1 answer

JDIC Library Path

I have the following line in my java app webBrowser = new WebBrowser(new URL("http://java.net")); It is causing the following error org.jdesktop.jdic.init.JdicInitException: java.lang.UnsatisfiedLinkError: no jdic in java.library.path at…
DanMatlin
  • 1,212
  • 7
  • 19
  • 37
1
vote
1 answer

What files does JDIC need to run?

I'm trying to call JDIC from my application, but I can't get it to run. What files do I need and where? From what I've been able to gather from their site, I basically need to put jdic.jar in classpath... however there is also a lib folder with…
Domchi
  • 10,705
  • 6
  • 54
  • 64
1
vote
1 answer

How to package IeEmbed.exe and MozEmbed.exe into an executable Jar file

I use JDIC in my executable Jar file, when it runs, it needs to have IeEmbed.exe and MozEmbed.exe in the same dir as the Jar file, I wonder if there is a way to package all 3 files into a single executable Jar file, so when I distribute the app,…
Frank
  • 30,590
  • 58
  • 161
  • 244
0
votes
1 answer

Opening a native app within a JFrame

I have a fullscreen app that needs to open edrawings, is it at all possible to load edrawings within the Java app so that as soon as the user closes the drawing it will return to the fullscreen app?
davidahines
  • 3,976
  • 16
  • 53
  • 87
0
votes
1 answer

How to open email client with attachment from Java

Already there are too many questions with this. Possible duplicate: 1. How to open an email client and automatically attach file in java 2. Start Mail-Client with Attachment? My requirement is: 1. open default email client from Java. 2. add 'to'…
vissu
  • 1,921
  • 7
  • 37
  • 52
-1
votes
1 answer

how to drive DJ NativeSwing thread separately from my own thread

Nowadays, I am working on a java swing application using DJ NativeSwing as my embed browser to do something automatic work. The scenario of my application is that a user click start button and the embed browser auto click some position of the…
AnoyLi
  • 3
  • 4