Mac de Javaat MACMac de Java - 暇つぶし2ch■コピペモード□スレを通常表示□オプションモード□このスレッドのURL■項目テキスト470:461 07/11/07 02:13:30 mqICyesM0 2の検証コード Runtime.getRuntime().exec("/usr/bin/open (日本語ファイル名)"); 471:461 07/11/07 02:14:37 mqICyesM0 3の検証コード。引数に、日本語名のファイルを含むディレクトリを指定してください。 import java.io.*; import javax.swing.*; public class ListFileTest { public static void main(String[] args){ try { JFrame frame = new JFrame(); JTextArea text = new JTextArea(); frame.getContentPane().add(text); File dir = new File(args[0]); File[] files = dir.listFiles(); for(int i=0; i<files.length; i++){ text.append(files[i].getName() + "\n"); } frame.pack(); frame.setVisible(true); } catch (Exception e){ e.printStackTrace(); } } } 472:461 07/11/07 02:15:09 mqICyesM0 4の検証コード import java.io.*; public class FileCreateTest { public static void main(String[] args) { try { new File("ががが.txt").createNewFile(); } catch (Exception e){} } } 次ページ最新レス表示レスジャンプ類似スレ一覧スレッドの検索話題のニュースおまかせリストオプションしおりを挟むスレッドに書込スレッドの一覧暇つぶし2ch