Custom Query (172 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (112 - 114 of 172)

Ticket Resolution Summary Owner Reporter
#203 fixed Open file dialog in AWT doesn't work. dmik
Description

If an AWT program shows this dialog, it can't be dismissed and directory navigation doesn't actually work. The details and an example are here: http://svn.netlabs.org/odin32/ticket/93.

#240 fixed Starting java.exe from ash/dash breaks command line arguments with spaces dmik
Description

Given this hello.java:

public class hello
{
  public static void main(String args[])
  {
    System.out.println("hello world!");
    for (int i = 0; i < args.length; ++i)
      System.out.println("arg["+i+"]=["+args[i]+"]");
  }
}

and this SH script:

D:/Tools/openjdk6_b27_sdk_os2_ga5-20130217/bin/java.exe -cp . hello "1 2" 3

you get this output if the script is run by bash:

hello world!
arg[0]=[1 2]
arg[1]=[3]

and this output if it's run by ash/dash:

hello world!
arg[0]=[1]
arg[1]=[2]
arg[2]=[3]

Apparently, in the second case spaces are handled incorrectly.

#98 fixed Some texts are missing on Java Application djcaetano
Description

I have noticed some swing applications are displayed with missing parts on eComStation, text data, for instance. This is an exemple of such application: http://www.receita.fazenda.gov.br/publico/programas/IRPF/2011/PGDIRPF2011/Java/zip/IRPF2011v1.0.zip

I am attaching two snapshots: one taken when running this program on Windows and another running it on eComStation. Although it runs on eComStation, the missing text renders it unusable.

Note: See TracQuery for help on using queries.