Re: font properties again.

2001-03-22 Thread Nancy F. Maniquis
Wayne, regarding the font problem, this solution worked for me: http://www.jguru.com/faq/view.jsp?EID=229424 i don't know about the colormap warning though. -- nancy - Original Message - From: cindy <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, March 23, 2001 3:44 PM Subj

Re: font properties again.

2001-03-22 Thread Cynthia Jeness
I installed j2sdk1.3.0 from Sun, but had a very similar error message. In order to fix this, I changed the various symbol lines in the font.properties file like this; FROM: --symbol-medium-r-normal--*-%d-*-*p-*-adobe-fontspecific TO: -urw-symbol-medium-r-normal--*-%d-*-*p-*-urw-fontspecific

Fonts too big.

2001-03-22 Thread Miloslaw Smyk
Hi! I've been playing with font configuration of JDK1.3.0_02 under Linux/i386 with the aim of getting it to look the same as under Windows. Unfortunately setting font.properties file to immitate Windows setup didn't make it really identical - basically the fonts displayed by Linux version are 1 p

RE: servlet and graphics

2001-03-22 Thread Martin, Stephen
This is because the call to the graphically environment is probably using an awt component that is peered with a native X-Windows implementation. This component is probably making a call to the X server for some service (for example rendering a font). That call will be done in the context of whoev

font properties again.

2001-03-22 Thread cindy
Hi, I just installed j2sdk1.3.0 from blackdown and getting the error message about font properties. The error messages goes like this; Font specified in font.properties not found [ --symbol-medium-r-normal--*-%d-*-*p-*-adobe-fontspecific] I went to the archives and found Jueren Kreileder reply, bu

servlet and graphics

2001-03-22 Thread Michael Remme
Hi all, i am running a servlet on a suse 7.0 -server, running with blackdown jdk 1.2.2. This servlet shall create on the fly a gif-image and store that somewhere on the server. When the module of the servlet is reaching the point, where it shall call the graphic-environment, the following error

Re: GCJ on RedHat 6.x

2001-03-22 Thread David Brownell
The versions of GCJ worth trying are the one RedHat put onto the RedHat 7.0 distribution ("GCJ 2.96rh"), and for the truly bleeding edge user, recent GCC 3.0 snapshots. The 2.95 versions are significantly out of date, and not at all recommended. On the other hand, the 3.0 versions are restabiliz

RE: Typing International Text

2001-03-22 Thread Martin, Stephen
One way to do this is to use the unicode escape sequences. eg: \u00a9 would include the unicode character for the copyright symbol. You can find the unicode values at www.unicode.org > Does anyone know the secret to typing non-Latin-1 text into a > Java program > on Linux? I've tried everything

Re: readInt() & byte order

2001-03-22 Thread Matthias Pfisterer
Matthias Pfisterer wrote: > > Ashish wrote: > > > > Answer is simple > > > > Java program expects file bytes in big-endian format, while C uses little > > endian > > Sorry, wrong. C uses the native byte order of the system. I.e. it > depends on the processor. > x86 (Intel, AMD) => little endian