분류 전체보기
-
[JAVA] 객체를 직렬화 하여 파일에 쓰고 읽기JAVA 2012. 2. 8. 22:45
1. 직렬화 FileOutputStream fileStream = new FileOutputStream("MyGame.ser"); // 파일에 쓰는 역할 ObjectOutputStream os = new ObjectOutputStream(fileStream); // 파일에 쓰기전에 직렬화 하는 역할 // 두개의 스트림을 연결함, 연쇄(chain)이라고 함 // ObjectOutputStream은 객체를 직렬화하여 저장하는 역할을 하고 // FileOutputStream은 그걸 받아서 파일로 저장하는 역할을 한다. TheThings objectOne; os.writeObject(objectOne); // 위 두개 스트림을 타고 직렬화->파일출력 수행 os.writeObject(objectTwo); os.w..
-
-
[Load Runner] Transaction 실패조건, 실패시 응답출력Performance 2011. 10. 7. 11:38
Action() { double trTime; int nFound; //lr_continue_on_error(1) // 1 continue, 0 stop //lr_fail_trans_with_error( lr_start_transaction("address"); web_set_max_html_param_len("262144"); // default max length is 256 characters // web_reg_save_param("checkText", "LB=resu", "RB=lns", LAST); // save entire body to a parameter web_reg_save_param("ParamResponseBody", "LB=", "RB=", "Search=Body", LAST);..
-
Google Tesing 관련 동영상카테고리 없음 2011. 10. 6. 12:12
>> 구글의 테스트자동화...놀랍다. Web Testing at Google: Infrastructure for the World's Most Demanding Web Developers http://www.youtube.com/watch?v=M47-FGvVJx0 >> 이하 구글 테스트 관련직 종사자들 짧은 인터뷰 별 내용 없지만.. 일하는 사람들 참 정감이 있네 ㅎㅎ 특히 Prajakta 말투가 three idiot 생각남 Test Engineering at Google - Our Culture http://www.youtube.com/watch?v=a0Vjs-7Wz0Q Working at Google Seattle - Lydia: Test Engineering Manager http://www.you..