1. 경고창 window.alert() window.alert("출력"); 2. HTML출력 document.write() document.write("HTML출력"); // HTML document 이후에 document.write()의 사용은 // 존재하는 모든 HTML을 지우고 완전히 로드되기 때문에 // 테스트 용도로만 추천 JavaScript 출력 테스트 click 3. HTML요소에 출력 innerHTML document.getElementById("test").innerHTML = '출력'; 4. 브라우저 콘솔에 출력 console.log() // 브라우저 F12 개발자 모드에서 확인 가능console.log("출력");
- 위 화면의 코드를 보면 $nbsp를 추가하지 않았는데 생성되어있다. 삭제하고자 코드를 봐도 볼 수가 없으니 헤메고 있었다. - 방법을 찾다가 아래와 같은 방법으로 해결했다. - 아래 코드를 보면 해당 class의 값은 form-group으로 지정되어 있다. - 아래 코드는 &nbps 를 지우는 스크립트이다. form-group 위치에 자신이 지정한 클래스명을 적어넣으면 된다. - 해결되었다.
상황 - CentOS7을 설치하기 위해 이미지 파일을 넣고 Install CentOS 7을 이용해 설치를 진행하려 했으나 아래와 같은 에러를 보게되었다. - 해당 가상머신 장치를 삭제 후 재생성도 해보았지만 그대로였다. 해결을 위해 시도한 방법 - 다른 버전의 CentOS 7 이미지 넣기 - 기존에 만들어져있던 CentOS 7 가상머신 복제하기 - 부팅 시 Troubleshooting -> Rescue a CentOS system 모드로 들어가서 복구하기 더보기 이미지 파일 넣어서 재실행 후 TroubleShooting으로 이동하여 Rescure 모드로 들어감 그러나 문제의 오류 화면으로밖에 전환이 되지 않음(Rescue 모드로 전환이 되지 않음) 추가 참고 링크 https://forums.centos...
파일 내용 복사하기 FileInputStream, FileOutputStream - 파일 내용 복사 자바 프로그램 import java.io.*; public class Copy2 { public static void main(String[] args) throws Exception{ FileInputStream fs=new FileInputStream("./src/파일명"); FileOutputStream fw=new FileOutputStream("abc2.txt", true); while(true) { int c=fs.read(); if(c==-1) break; fw.write(c); }//while System.out.println("ok"); fs.close();fw.close(); }//mai..
파일 내용 복사하기 FileReader, FileWriter - 파일 내용 복사 자바 프로그램 import java.io.*; public class Copy1 { public static void main(String[] args){ try { FileReader fs=new FileReader("./src/파일명"); FileWriter fw=new FileWriter("abc.txt"); while(true) { int c=fs.read(); if(c==-1) break; fw.write(c); }//while System.out.println("ok"); fs.close();fw.close(); }catch(Exception e) { e.printStackTrace(); }//while }//ma..
날짜, 시간 출력하기 SimpleDateFormat - 날짜, 시간 출력 자바 프로그램 import java.util.Date; import java.text.SimpleDateFormat; public class C3 { public static void main(String[] args) { Date now=new Date(); SimpleDateFormat s1=new SimpleDateFormat("yyyy-MM-dd"); System.out.println(s1.format(now)); SimpleDateFormat s2=new SimpleDateFormat("h:mm a"); System.out.println(s2.format(now)); SimpleDateFormat s3=new SimpleD..