public inbox for java-prs@sourceware.org
help / color / mirror / Atom feed
From: plm@pcug.org.au
To: gcc-gnats@gcc.gnu.org
Subject: libgcj/6131: Working with Sun's 1.4 jre
Date: Tue, 02 Apr 2002 02:46:00 -0000	[thread overview]
Message-ID: <20020402104547.16606.qmail@sources.redhat.com> (raw)


>Number:         6131
>Category:       libgcj
>Synopsis:       Working with Sun's 1.4 jre
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    unassigned
>State:          open
>Class:          support
>Submitter-Id:   net
>Arrival-Date:   Tue Apr 02 02:46:01 PST 2002
>Closed-Date:
>Last-Modified:
>Originator:     Paul Matthews
>Release:        2.96
>Organization:
>Environment:
Linux localhost.localdomain 2.4.3-20mdk #1 Sun Apr 15 23:03:10 CEST 2001 i686 unknown
>Description:
Really this is an "am I doing it right" question, followed 
by "does it work wiht a later version" question.

[cat]$rpm -qa | grep java
gcc-java-2.96-0.48mdk
[cat]$ rpm -qa | grep gcj
libgcj-2.96-2mdk
libgcj-devel-2.96-2mdk
 cat cat.java
import java.io.*;
import java.util.regex.*;
 
class cat
{
  public static void main( String args[] )
  {
    BufferedReader in = new BufferedReader(
                          new InputStreamReader(
                            System.in));
    BufferedWriter out = new BufferedWriter(
                           new OutputStreamWriter(
                             System.out));
    Pattern fs = Pattern.compile("\t");
    String record;
    String fields[];
    String field;
 
    try {
      while( true ) {
        record = in.readLine();
        if( record == null )
          break;
        field="";
        for(i=0;i<record.length();i++) {
        }
        fields = fs.split(record,0);
        out.write(record);
        out.newLine();
      }
      out.flush();
    }
    catch( IOException e ) {
    }
  }
}
export CLASSPATH=/opt/j2sdk1.4.0/jre/lib/rt.jar
[cat]$ gcj -o cat cat.java -lgcj
java/lang/String.java:0: bad value constant type 0, index 0
>How-To-Repeat:

>Fix:

>Release-Note:
>Audit-Trail:
>Unformatted:


             reply	other threads:[~2002-04-02 10:46 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2002-04-02  2:46 plm [this message]
2002-04-02 19:38 tromey

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20020402104547.16606.qmail@sources.redhat.com \
    --to=plm@pcug.org.au \
    --cc=gcc-gnats@gcc.gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).