Urgent help please

hi,

I am doing a media player, and the help i need is when i run my media player and try to play video, it gives me the following error

Fobs4JMF - Native shared library NOT found

java.lang.UnsatisfiedLinkError: no fobs4jmf in java.library.path

at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1682)

at java.lang.Runtime.loadLibrary0(Runtime.java:823)

at java.lang.System.loadLibrary(System.java:1030)

Can anyone please help me.. I have completed my project and it was working all these days properly and today being my demo for the project it doesnt work..

waiting for the reply

[638 byte] By [Spaniana] at [2007-11-27 4:45:12]
# 1
You need to add the native library called fobs4jmf to your classpath.Look at the PC where your application used to work, and search this library (I presue a .dll file(s))
java_2006a at 2007-7-12 9:57:30 > top of Java-index,Java Essentials,New To Java...
# 2
hey,I have added both jar and dll file.but still it doesnot work
Spaniana at 2007-7-12 9:57:30 > top of Java-index,Java Essentials,New To Java...
# 3
> You need to add the native library called fobs4jmf> to your classpath.I don't think so! If using Windows then to the PATH (maybe) but not the CLASSPATH.
sabre150a at 2007-7-12 9:57:30 > top of Java-index,Java Essentials,New To Java...
# 4
@sabre150I know that the variable name is PATH and not CLASSPATH.What I meant is -classpath added to a compilation command. exp: javac -classpath .... Okay ?@SpanianAre you sure you missed nothing ?
java_2006a at 2007-7-12 9:57:30 > top of Java-index,Java Essentials,New To Java...
# 5

> @sabre150

>

> I know that the variable name is PATH and not

> CLASSPATH.

>

> What I meant is -classpath added to a compilation

> command. exp: javac -classpath .... Okay ?

>

> @Spanian

> Are you sure you missed nothing ?

No, not okay. He can't find a native library and this has nothing to do with CLASSPATH. On an *nix flavor it would be added to LD_LIBRARY_PATH, on Windows I'm not sure what the equivalent to that is, but adding it to PATH may help, it would at least be a lot better than CLASSPATH, or the -cp/-classpath options.

masijade.a at 2007-7-12 9:57:31 > top of Java-index,Java Essentials,New To Java...