ALPESH KOTHARI wrote:
>
> Hello Everybody,
[snip]
> following exception:
> java.sql.SQLException: ERROR: parser: parse error at
> or near ""
>
[snip]
> try
> {
> pid1=din.readInt();
>
Try converting the int into a string.
E.g.
>int pid1;
> pid1=din.readInt();
String pid1;
pid1 = Integer.toString(din.readInt());
I didn't test it, but this seems like the problem.
Troy
>
> Hello Everybody,
>
> I have written one progr
I'm finding that Blackdown javah version 1.2 is generating C
prototypes that are missing the package name.
In particular, I have the following in "FitNative.java":
package fit;
public class FitNative
{
static native String realName(String username)
throws NoSuchUserException
> Try 'javah -jni fit.FitNative' and it will work.
By Jove, you're right...
In fact, I had tried that before but I hadn't noticed that the resulting
filename was "fit_FitNative.h", so I was still looking at the previous
FitNative.h that I had generated.
Thanks,
Solomon
--
Solomon <|> [EMAIL
> Solomon Douglas writes:
Solomon> I'm finding that Blackdown javah version 1.2 is generating C
Solomon> prototypes that are missing the package name.
This not Linux specific; the problem is that you don't use the fully
qualified class name:
Solomon>package fit;
Solomon>
At 09:04 9/29/99 -0500, Roll, Greg wrote:
>Exception in thread "main" java.lang.NoClassDefFoundError: HelloWorld/class
you didn't by any chance type "java HelloWorld.class" did you?
cabbey at home dot net <*> http://members.home.net/cabbey
I want a binary interface to the brain!
Tod
I am have a strange problem. Menu's in my application are rendering
with a gap between the menubar and the acutal menu. The gap is just
blank space which you can click through and is about the height of one
JMenuItem. I made no changes to any of my menu's or menubars. In fact
it just appeared
The authors of the Enlightenment window manager have some
interesting comments today about Java:
http://www.enlightenment.org/news.html
Their basic point is that "Java under X (AWT) is Broken"; they
don't mention which Java implementation they're referring to.
I don't think things are all t
Peter Graves wrote:
> The authors of the Enlightenment window manager have some
> interesting comments today about Java:
>
> http://www.enlightenment.org/news.html
>
> Their basic point is that "Java under X (AWT) is Broken"; they
> don't mention which Java implementation they're referring to
Peter Graves wrote:
>
> The authors of the Enlightenment window manager have some
> interesting comments today about Java:
>
> http://www.enlightenment.org/news.html
>
> Their basic point is that "Java under X (AWT) is Broken"; they
> don't mention which Java implementation they're referrin
10 matches
Mail list logo