출처 : 안드로이드 c/c++ 개발환경 구축 Mac 환경에서 make-standalone-toolchain.sh 로 toolchain 사용해서 openssl 컴파일 해보았습니다. 컴파일 버전 openssl-1.0.1e.tar.gz 환경 Makefile 수정 추가 CROSS = $(TOOLCHAIN)/bin/arm-linux-androideabi- INCDIR = $(TOOLCHAIN)/sysroot/usr/include LIBDIR = $(TOOLCHAIN)/sysroot/usr/lib 수정 CC= $(CROSS)gcc AR= $(CROSS)ar $(ARFLAGS) r RANLIB= $(CROSS)ranlib NM= $(CROSS)nm 결과 테스트 Makefile ----------------------..
import java.io.BufferedReader; import java.io.InputStream; import java.io.InputStreamReader; import java.net.URL; public class HttpGetCall { public static void main(String[] args) throws Exception { URL url = new URL("http://naver.com"); InputStream is = url.openStream(); BufferedReader inFile = new BufferedReader(new InputStreamReader(is)); String line = null; while( (line = inFile.readLine()) ..
Delphi - Byte 관련 Tip function BytesToHex(aSource: TBytes): string; begin SetLength(Result, Length(aSource) * 2); if Length(aSource) > 0 then BinToHex(aSource[0], PChar(Result), Length(aSource)); end; procedure TForm1.Button1Click(Sender: TObject); const SetupLdrExeHeaderOffset = $01d204; A: Array[0..3] of Byte = ($EF, $BE, $AD, $DE); var HInstance: THandle; filename: String; FileStream: TFileStr..
log4j - 수동설정 package com.server.servlet; import java.io.IOException; import java.util.List; import javax.servlet.ServletConfig; import javax.servlet.ServletException; import javax.servlet.http.HttpServlet; import org.apache.log4j.DailyRollingFileAppender; import org.apache.log4j.Level; import org.apache.log4j.Logger; import org.apache.log4j.PatternLayout; public class ServerInitServlet extends H..
import java.io.BufferedReader; import java.io.File; import java.io.FileInputStream; import java.io.InputStreamReader; public class CommandExtractor { public static void main(String[] args) throws Exception { File file = new File(args[0]); if(file.exists()) { BufferedReader inFile = new BufferedReader(new InputStreamReader(new FileInputStream(file),"UTF-8")); String sLine = null; while( (sLine = ..
출처 : Spring MVC Checkbox And Checkboxes ExampleCodeData.javapublic class CodeData { private int itemValue; private String itemLabel; public CodeData(int itemValue, String itemLabel) { super(); this.itemValue = itemValue; this.itemLabel = itemLabel; } public int getItemValue() { return itemValue; } public void setItemValue(int itemValue) { this.itemValue = itemValue; } public String getItemLabel(..
- Total
- Today
- Yesterday
- Spring MVC
- ffmpeg
- Spring
- SAS
- sas2009
- NDK
- koba2010
- KOBA
- Xcode
- Delphi Tip
- 레이싱모델 익스트림 포토 페스티벌
- JavaScript
- ubuntu
- android
- 서울오토살롱
- Mac
- Linux
- 지스타2007
- ble
- 일본여행
- 튜닝쇼 2008
- MySQL
- flex
- Delphi
- Java
- 동경
- BPI-M4
- 전예희
- 송주경
- oracle
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |