Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.java.programmer > #11915
| From | simplicity <stella_pigeon@live.ca> |
|---|---|
| Newsgroups | comp.lang.java.programmer |
| Subject | Re: Basic question about compiling |
| Date | 2012-02-10 11:48 -0800 |
| Organization | http://groups.google.com |
| Message-ID | <d734cb97-8b87-4cb6-9bb3-60251049e949@1g2000yqv.googlegroups.com> (permalink) |
| References | <0fffb4b6-426a-4304-a249-63de08dd6d33@d15g2000yqg.googlegroups.com> <jh3ife$vvr$1@dont-email.me> <6230500.347.1328894981750.JavaMail.geo-discussion-forums@pbcmg9> |
On Feb 10, 10:29 am, Lew <lewbl...@gmail.com> wrote: > Knute Johnson wrote: > > simplicity wrote: > > > I know this is kind of basic but somehow the solution escapes me. > > > > I have the applet which is supposed to hook up with the hardware > > > attach to the computer. The hook-up interface is available in the > > > external JAR archive called sbsdk.jar. So, I compile the applet with > > > the following command: > > > > javac -d %DST% ^ > > > -classpath %CLASSPATH_1%;%CLASSPATH_2% ^ > > > %SRC%\MyApplet.java>%DST%\MyApplet.log 2>%DST%\MyApplet.err > > > > where > > > %CLASSPATH_1% points to the location of the sbsdk.jar, namely "C:\Users > > > \User\\Java\lib\sbsdk.jar" > > > and > > > %CLASSPATH_2% points to "%JRE%\lib\plugin.jar" (for JSObject to > > > communicate with javascript in the page). > > > > OK, so far so good. Applet compiles with no issues. But that's where > > So far all you've done is specify the compile-time classpath. > > > > it ends. When I load the HTML file containing the applet into a > > > browser I am getting the exception > > > > Exception in thread "thread applet-MyApplet.class-1" > > > java.lang.NoClassDefFoundError: com.<blah-blah>.sbsdk/SBSDKListener > > Because you did not provide the JAR to the runtime classpath! > > You need to study the Java tutorial. > > > > Luckily, I have the access to the sbsdk.jar source code. When I copy > > > the folder structure containing compiled classes of sbsdk (com\<blah- > > > blah>\sbsdk), my applet loads and everything works as expected. > > Your expectations are what are at fault. I guess you are right. When I post the question on the public forum my expectations are (1) get the answer, regardless of how trivial, basic and obvious it might be or (2) get a gibberish like the stuff you spent time on creating. "Go do your research" is a typical response of a clueless buffoon whose only characteristic is that he/she cannot keep his/her mouth shut. > You must provide the dependencies *at run-time*. Didn't I say that I know WHAT is causing it? I thought I did. What I do not know is WHY and HOW to fix it. Anyway, thanks for your time you spent typing your response. Sorry to state it to you though that it is useless. I always DO my research and if I decide to go public with questions it means I did not find the answer myself. I suppose the same applies to majority of folks here and my advise to you is: give people a bit of a slack. > > > Can someone help me understand why this is happening? I know that this > We can tell you why this is happening; we cannot help you understand it. And also thanks for your attempt to point out to me how really stupid I am. I am going to try to improve...
Back to comp.lang.java.programmer | Previous | Next — Previous in thread | Next in thread | Find similar | Unroll thread
Basic question about compiling simplicity <stella_pigeon@live.ca> - 2012-02-10 08:12 -0800
Re: Basic question about compiling Knute Johnson <nospam@knutejohnson.com> - 2012-02-10 09:00 -0800
Re: Basic question about compiling Lew <lewbloch@gmail.com> - 2012-02-10 09:29 -0800
Re: Basic question about compiling simplicity <stella_pigeon@live.ca> - 2012-02-10 11:48 -0800
Re: Basic question about compiling Lew <lewbloch@gmail.com> - 2012-02-10 13:11 -0800
Re: Basic question about compiling simplicity <stella_pigeon@live.ca> - 2012-02-11 13:17 -0800
Re: Basic question about compiling Arne Vajhøj <arne@vajhoej.dk> - 2012-02-11 17:58 -0500
Re: Basic question about compiling Lew <lewbloch@gmail.com> - 2012-02-11 20:11 -0800
Re: Basic question about compiling Arne Vajhøj <arne@vajhoej.dk> - 2012-02-12 09:39 -0500
Re: Basic question about compiling simplicity <stella_pigeon@live.ca> - 2012-02-11 22:14 -0800
Re: Basic question about compiling Leif Roar Moldskred <leifm@dimnakorr.com> - 2012-02-12 00:36 -0600
Re: Basic question about compiling Patricia Shanahan <pats@acm.org> - 2012-02-14 06:15 -0800
Re: Basic question about compiling Arne Vajhøj <arne@vajhoej.dk> - 2012-02-12 09:37 -0500
Re: Basic question about compiling simplicity <stella_pigeon@live.ca> - 2012-02-12 11:04 -0800
Re: Basic question about compiling Arne Vajhøj <arne@vajhoej.dk> - 2012-02-12 14:34 -0500
Re: Basic question about compiling Jukka Lahtinen <jtfjdehf@hotmail.com.invalid> - 2012-02-14 12:29 +0200
Re: Basic question about compiling RedGrittyBrick <RedGrittyBrick@spamweary.invalid> - 2012-02-15 10:38 +0000
Re: Basic question about compiling rossum <rossum48@coldmail.com> - 2012-02-11 18:57 +0000
Re: Basic question about compiling Arne Vajhøj <arne@vajhoej.dk> - 2012-02-11 15:14 -0500
Re: Basic question about compiling simplicity <stella_pigeon@live.ca> - 2012-02-11 12:58 -0800
Re: Basic question about compiling Arne Vajhøj <arne@vajhoej.dk> - 2012-02-11 16:18 -0500
Re: Basic question about compiling Arved Sandstrom <asandstrom3minus1@eastlink.ca> - 2012-02-11 18:13 -0400
Re: Basic question about compiling simplicity <stella_pigeon@live.ca> - 2012-02-11 22:21 -0800
Re: Basic question about compiling simplicity <stella_pigeon@live.ca> - 2012-02-10 11:26 -0800
Re: Basic question about compiling Knute Johnson <nospam@knutejohnson.com> - 2012-02-10 11:37 -0800
Re: Basic question about compiling simplicity <stella_pigeon@live.ca> - 2012-02-10 11:51 -0800
Re: Basic question about compiling simplicity <stella_pigeon@live.ca> - 2012-02-10 12:30 -0800
Re: Basic question about compiling Arne Vajhøj <arne@vajhoej.dk> - 2012-02-11 15:00 -0500
Re: Basic question about compiling Robert Klemme <shortcutter@googlemail.com> - 2012-02-10 23:30 +0100
Re: Basic question about compiling Roedy Green <see_website@mindprod.com.invalid> - 2012-02-11 02:33 -0800
csiph-web