Re: Problems with fonts
Hi, I am facing the same problem with blackdown jdk1.2.2 on Red Hat 7.1. I tried the solution as given in the jguru faq. But it didn't work for me. Does anybody have other solutions. I tried searing the mail list but didn't find any Thanks and Regards Amol "Nancy F. Maniquis" wrote: > Try this suggestion from JGuru: > > http://www.jguru.com/jguru/faq/view.jsp?EID=229424 > > Also, you may find other solutions by searching this mailing list's archives. > > -- nancy > > - Original Message - > From: Mario Jaramillo R. <[EMAIL PROTECTED]> > To: <[EMAIL PROTECTED]> > Sent: Wednesday, June 06, 2001 5:37 PM > Subject: Problems with fonts > > > I am working with Mandrake 8.0 and Java version 1.2.2 Linux-JDK; > > when I execute applets and applications appears the following: > > > > Font specified in font.properties not found [--symbol-medium-r-normal-- > > *-*-p-*-adobe-fontspecific] > > -- > To UNSUBSCRIBE, email to [EMAIL PROTECTED] > with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED] -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Re: Problems with fonts
- Original Message - From: Amol Kulkarni <[EMAIL PROTECTED]> Sent: Friday, June 08, 2001 3:03 PM > I am facing the same problem with blackdown jdk1.2.2 on Red Hat 7.1. > I tried the solution as given in the jguru faq. > But it didn't work for me. > > Does anybody have other solutions. I tried searing the mail list but didn't find > any How about the workarounds listed on the Java-Linux FAQ at Blackdown.org? -- nancy -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Program flow tools (was Re: Java equivalent of outportb?)
|hi all, can anyone tell me if there is a way to trace into source |code and find out which class is invoked and which method in |various java classes. i don't have documentation of a project |which i've been assigned to and need to reverse engineer the |classes and then get the various paths from the flow of the |project. all and any help is appreciated. thanks in advance. Blatant plug alert: There are a variety of debuggers around but JProbe Profiler can produce a call graph that I've found useful for understanding flow of new programs. I find it easier for getting an overall picture than stepping with a debugger. Both are obviously limited to code that actually gets executed. You can download a copy for evaluation at: http://www.sitraka.com/try/ The eval is fully functional, but expires after a while. -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Java benchmarks
Bruce McKinlay's web page "Some J*va benchmarks that run on gcj" (http://waitaki.otago.ac.nz/~bryce/gcj/) mentions * Appeal Software Solutions AB have made a set of benchmarks available that demonstrate the performance of their "JRockit" VM. These are also useful for testing gcj. and points to http://www.appeal.se/machines/benchmarks/ which no longer exists. If you are not forbidden to, would some kind soul send me these benchmarks. Thanks. --- Vladimir Vladimir G. Ivanovichttp://www.leonora.org/~vladimir 2770 Cowper St. [EMAIL PROTECTED] Palo Alto, CA 94306-2447 +1 650 678 8014 -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Problems with fonts
Greetings: I am working with Mandrake 8.0 and Java version 1.2.2 Linux-JDK; when I execute applets and applications appears the following: Font specified in font.properties not found [--symbol-medium-r-normal-- *-*-p-*-adobe-fontspecific] Please , tell me how to solve it. Thanks in advance. Mario Jaramillo -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Re: Problems with fonts
>From what I understand, you may have to install the URW fonts. See: http://www.blackdown.org/java-linux/docs/support/faq-release/FAQ-java-linux-6.h tml#ss6.4 > > Greetings: > > I am working with Mandrake 8.0 and Java version 1.2.2 Linux-JDK; > when I execute applets and applications appears the following: > > Font specified in font.properties not found [--symbol-medium-r-normal-- > *-*-p-*-adobe-fontspecific] > > Please , tell me how to solve it. > > Thanks in advance. > > Mario Jaramillo > > > > > -- > To UNSUBSCRIBE, email to [EMAIL PROTECTED] > with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED] > > -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Re: Problems with fonts
Try this suggestion from JGuru: http://www.jguru.com/jguru/faq/view.jsp?EID=229424 Also, you may find other solutions by searching this mailing list's archives. -- nancy - Original Message - From: Mario Jaramillo R. <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, June 06, 2001 5:37 PM Subject: Problems with fonts > I am working with Mandrake 8.0 and Java version 1.2.2 Linux-JDK; > when I execute applets and applications appears the following: > > Font specified in font.properties not found [--symbol-medium-r-normal-- > *-*-p-*-adobe-fontspecific] -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
parsing query strings
Hello all, I have a String, which will be a query string from an application. I want to parse it to get at some of the values. Is there a handy class that will do that for me? -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
JNI exception bug
Hi,
I'm using the jni with blackdown jdk1.3 ("Java HotSpot(TM) Client VM
(build 1.3.0, mixed mode)") and gcc2.95.2 to compile my c++-libs.
Now I encountered the bug giving the error message :
"An unexpected exception has been detected in native code outside the
VM"
This bug has the id 4389172 in the sun bug database.
I found that all the postings at developer.java.sun.com related to this
bug are not very helpful or instructive.
My question now is if there is a workaround for this bug with the
blackdown jdk1.3.
As far as I understood this problem it could be solved by using the
right c++-compiler for
compiling my native lib.
What is the compiler used for compiling the blackdown VM ?
Thanx, Markus
--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Re: parsing query strings
Here is a method that I have written in one of my classes.
Send me a $25 certificate if it helps ;-)
public Vector stringParser(String str, String delim, int maxLength)
{
Vector strVector = new Vector();
String token;
try {
StringTokenizer st = new StringTokenizer(str, delim);
while (st.hasMoreTokens()) {
token = st.nextToken();
if (token.length() > maxLength)
token = token.substring(0, maxLength);
strVector.addElement(token);
}
}
catch (NoSuchElementException nse) {
return null;
}
return strVector;
}
HY
--
kevin1 wrote:
>
> Hello all,
> I have a String, which will be a query string from an application. I want
> to parse it to get at some of the values. Is there a handy class that will do
> that for me?
>
> --
> To UNSUBSCRIBE, email to [EMAIL PROTECTED]
> with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
