반응형 분류 전체보기209 빈줄제거 정규식을 이용 fine & replace1.find : ^(?:[\t ]*(?:\r?\n|\r))+replace : 공백 2.find : \n+replace : \n 3.delete-whitelines' packagehttps://atom.io/packages/delete-whitelines 2018. 10. 2. FileOutputStream vs. FileWriter FileOutputStream vs. FileWriter When we use Java to write something to a file, we can do it in the following two ways. One uses FileOutputStream, the other uses FileWriter.Using FileOutputStream:File fout = new File(file_location_string); FileOutputStream fos = new FileOutputStream(fout); BufferedWriter out = new BufferedWriter(new OutputStreamWriter(fos)); out.write("something");Using FileWrite.. 2018. 9. 30. eclipse 에서 공백 라인 없애기 ctrl + f 하시고 Find : ^\RReplace with : 그리고 Regular expressions 체크해 주시다음!Replace 하시면 라인이 싹뚝 없어질겁니다.파일 여러개를 한번에 하시려면?ctrl + h 로 변경 하시면 되겠죠^^; 2018. 9. 30. 특정폴더 마운트 fstab 특정폴더 마운트1. sudo mount -obind ~/github/python-lab/ htdocs/2. sudo mount -o bind ~/github/python-lab/ htdocs/둘다 동일하게 동작함 fstab 등록A(source)폴더를 B(target)폴더로 마운트 # /etc/fstab: static file system information.:source :targer /home/xbb123/github/python-lab /opt/lampstack-7.1.22-0/apache2/htdocs none bind 0 0 2018. 9. 30. 이전 1 ··· 21 22 23 24 25 26 27 ··· 53 다음 반응형