Platform
-
자바Platform/DB 2012. 6. 3. 00:57
DriverManager.getConnection() Connection.close().createStatement().prepareStatement().prepareCall() Statement.close().executeQuery() PreparedStatement.close().setInt().setString().executeQuery() CallableStatement.close().setString().registerOutParameter().execute().getString() ResultSet.close().next().getInt().getString()import java.sql.*;/* create table customer (no number(4) primary key,name v..
-
자바Platform/File(장치 IO) 2012. 6. 1. 16:24
java.io.DataOutput // 인터페이스 java.io.DataIntput // 인터페이스 java.io.RandomAccessFile.close().writeInt().read().readInt().seek().getFilePointer()import java.io.*; public class RandomAccessFileTest { public static void main(String[] args)throws IOException { RandomAccessFile f; f = new RandomAccessFile("...", "rw"); for(int i=0;i
-
C#Platform/util 2012. 3. 26. 20:21
System.Random.Next() * 랜덤으로 문자열을 만들어주는 함수 회원이 비밀번호를 분실했을때 소정의 인증절차를 통과했을 경우 임의로 암호를 바꿔서 메일로 보내줄때 필 요해서 작성해봤습니다. 예전에도 이 게시판에 클래스 형태로 작성해서 올렸었는데 클래스 사용에 익숙치 않은분이 많은것 같아서 함 수로 정의했습니다. 생성되는 문자열 범위는 [a-zA-Z0-9]입니다. 함수의 인수에 얻고자하는 범위를 숫자로 입력해서 호출하면 됩니다. =48 and _ RanNum // ASP.NET(C#) ———————————————- public string RandomString(int strLen) { int rnum=0; int i, j; string ranStr = null; System.Random ran..
-
Microsoft .NET FrameworkPlatform/Environment 2012. 3. 11. 22:49
1. Visual Studio .NET 2002 / .NET Framework 1.0 (2002)- 첫 통합 개발 환경- C# 1.0 / Visual Basic.NET (7.0) 2. Visual Studio .NET 2003 / .NET Framework 1.1 (2003)- ADO.NET, ASP.NET, Windows Forms- C# 1.1 / Visual Basic.NET (7.1)- Windows Server 2003 → .NET Framework 1.1 표준 탑재 3. Visual Studio .NET 2005 / .NET Framework 2.0 (2005)- ASP.NET 2.0, ADO.NET 2.0, Windows Form 2.0- C# 2.0 / Visual Basic 2005 (8..
-
ASP.NETPlatform/Environment 2012. 3. 7. 15:59
ASP.NET 2.0 응용 프로그램(웹 사이트) 구성 파일(Configuration File) Machine.config Web.config Global.asax(ASP.NET 응용 프로그램 파일) 웹 폼(페이지) 응용 프로그램 상태 세션 상태 Server // HttpServerUtility.Redirect().Transfer().Execute() .UrlEncode() System.Web.UI.Pagevoid Page_Load(object sender, EventArgs e) .Context // HttpContext .IsPostBack .IsCrossPagePostBack .PreviousPage .FindControl() System.Web.HttpRequest .QueryString .Form..
-
Java Naming and Directory Interface (JNDI)Platform/DB 2012. 2. 5. 22:46
Java 2 Platform, Enterprise Edition (J2EE) // J2EE 표준(웹 컨테이너) J2EE 플랫폼 Java Naming and Directory Interface (JNDI) J2EE 애플리케이션 엔터프라이즈 개발 웹 애플리케이션 JDBC 데이터 소스 MySQL JDBC 드라이버 클래스 JDBC URL 데이터베이스 커넥션 풀링 패키지 참조 사이트: http://www.ibm.com/developerworks/kr/library/j-jndi/index.html http://kwon37xi.egloos.com/2852803