KVMプログラミング soso.java(3/4) プログラム例 soso.java つづき // private byte[] readP(){ try{ // Socket s= new Socket("192.47.224.13", 19); Socket s= new Socket("192.47.224.123", 19); InputStream is= s.getInputStream(); byte[] b= new byte[20]; int n= is.read(b); g.drawString("read" + n+ " bytes", 5,10, g.PLAIN); s.close(); s=null; return b; }catch(Exception e){ g.drawString("" + e, 5,10, g.PLAIN); return null; } } つづく