본문 바로가기
개발/Web || Mobile

ByteArrayInputStream 로 받아서 가공할때

by 백아절현 2009. 6. 9.

  /*
  int ch;
  while((ch=baFile.read()) != -1 ){
   // 9 tab : 13 enter
   if(ch == 9 ){
    System.out.println( "*" );
   }
   System.out.print( "read : ["+ ch + " : " + (char)ch + "]");
  }*/


9 == 탭
13 == 엔터

'개발 > Web || Mobile' 카테고리의 다른 글

NPM init  (0) 2023.03.21
Aquery 만쉐!  (0) 2017.08.30
javaScript replaceAll  (0) 2009.02.19
update error occurred during initialization of VM  (0) 2009.02.02
폭 구하기 및 디버그  (0) 2008.11.05

댓글