본문 바로가기

분류 전체보기758

자바로 FTP Client 구현 (put, get) package MCP; import sun.net.*; import sun.net.ftp.*; import java.io.*;public class FTPTest { public static void main(String[] args){ String server = "211.189.143.201";//ftp 서버 돌아가는 IP String user = "mcpenv"; String password = "mtelo123"; String path = "/";//파일이 있는 경로 String downPath = "c:/test/";//파일을 다운 받을 경로 String testFileName = "CampRegDAO.class"; String upPath = "/VrsTest/";//업로드 될 경로 Strin.. 2009. 3. 3.
[ JAVA ] 자바로 TEXT 파일 쓰기 (만들기) package MCP; import java.io.*; public class Write_Text_Test { /** * @param args */ public static void main(String[] args) { // TODO Auto-generated method stub File file1 = new File("c:/testText1.txt"); File file2 = new File("c:/testText2.txt"); FileWriter fileWriterTest = null; PrintWriter newLineTest = null; try{ fileWriterTest = new FileWriter(file1); String text = "참 잘했어요"; fileWriterTest.wri.. 2009. 3. 3.
웹로직 설치 메뉴얼 (리눅스,윈도우) 8.1 BEA 에서 나온 메뉴얼이므로 확실하다. windows용 메뉴얼은 많은데... 리눅스 용 메뉴얼은 없어서 올려본다.(위에께 리눅스용 메뉴얼이다.) 2009. 3. 3.
웹로직 웹루트 설정 1. 웹로직 콘솔로 로그인 한다(http://localhost:7001/console/ (weblogic/weglogic) 2. 커넥션 풀을 생성 한다 Service > JDBC > Connection Pools 에서 connection pool 생성 3. 데이타 소스를 성성 한다 Service > JDBC > Data Source 에서 DataSource를 생성 생성된 connection pool로 Data Source를 생성 한다. 4. myserver 는 단순한 서버 셋팅만 되어진 상태 이므로 Web Application을 생성 한다 mydomain > Deployments > Web Application Modules 에서 Deploy a new Web Application Module 5. We.. 2009. 3. 3.