기술참고자료/Android | 2011. 12. 22. 18:49
[Android] MyApps로 Intent날리기 (0) | 2012.02.28 |
---|---|
[Android] Galaxy Note API - S Pen SDK 1.5 (0) | 2011.12.23 |
[Android] SSL 연결하는 방법 (0) | 2011.11.02 |
[Android] ADB 이용해서 패킷 덤프 뜨는 방법 (1) | 2011.11.02 |
[Android] ListView에서의 버튼 이벤트 (0) | 2011.10.18 |
기술참고자료/JAVA | 2011. 12. 20. 11:04
Spring source comes with default plugin for CVS. They had SVN plugin but it was removed in release 2.3.1 for following reason
We removed the Collabnet SVN from the Extension install for non-Windows platforms as we were seeing lots of issues with the SVN Java native bindings on Linux and Mac.
So if you want to install SVN support please manually install Subclipse or Subversive from their respective update sites.
Currently we can’t provide a solution that works on all platforms due to licensing restrictions on SVNKit. The good news is that we are currently going through the legal process to obtain a SVNKit redistribution license for STS. Once this agreement is in place we can add Subclipse and/or Subversive to the Extension install
Here is how to add the SVN plugin ig you need it
1. Open the STS dashboard.
2. Go to Extensions. This is under help and documentation.
3. Look for Subeclipse. Check the checkbox and click Install.
If you do not see Subeclipse it implies that it is already installed on your IDE.
원문 : http://www.skill-guru.com/blog/2010/10/28/how-to-add-svn-plugin-for-sts/
[JAVA] XML 직렬화도구 - Simple Framework (1) | 2011.06.21 |
---|---|
[JAVA] Hashmap & List 정렬기법 (0) | 2011.05.02 |
HttpClient의 심플한 사용 (0) | 2011.03.21 |
List Sort Sample Using Comparator<T> Interface (0) | 2011.03.17 |
DOM Parser vs SAX Parser (0) | 2011.03.17 |
서버운영일지 | 2011. 11. 15. 20:05
java -version
apt-get install sun-java6-jdk
add-apt-repository "deb http://archive.canonical.com/ lucid partner"
apt-get update
apt-get install sun-java6-jdk
java -version
sudo vim .bashrc
JAVA_HOME=/usr/lib/jvm/java-6-sun수정된 문서를 저장하고 나온 뒤
export JAVA_HOME
PATH=$PATH:$JAVA_HOME/bin
CLASSPATH=.:$JAVA_HOME/lib/*
echo $JAVA_HOME
echo $CLASSPATH
[Ubuntu Diary] 시스템 환경 확인하기 (0) | 2012.02.10 |
---|---|
[Ubuntu Diary] OS설치하기 - sexyubuntu 시작하기 (2) | 2012.02.10 |
[Ubuntu Diary] 다시 시작! (0) | 2012.02.10 |
[Ubuntu Diary] OS 다운로드 및 설치 (2) | 2011.10.08 |
[Ubuntu Diary] 시작하며... (0) | 2011.10.08 |
기술참고자료/Android | 2011. 11. 2. 18:32
HttpURLConnection conn = null;
if (myFileUrl.getProtocol().toLowerCase().equals("https")) {
// TODO SSL 요청 코드
trustAllHosts();
HttpsURLConnection https =
(HttpsURLConnection) myFileUrl.openConnection();
https.setHostnameVerifier(DO_NOT_VERIFY);
conn = https;
} else {
conn = (HttpURLConnection) myFileUrl.openConnection();
}
기타 참고경로 :
http://cafe.naver.com/jzsdn.cafe?iframe_url=/ArticleRead.nhn%3Farticleid=21091&
[Android] Galaxy Note API - S Pen SDK 1.5 (0) | 2011.12.23 |
---|---|
[Android] Android Compatibility Package (0) | 2011.12.22 |
[Android] ADB 이용해서 패킷 덤프 뜨는 방법 (1) | 2011.11.02 |
[Android] ListView에서의 버튼 이벤트 (0) | 2011.10.18 |
[Android] ListView에 내용이 없을때 (0) | 2011.10.18 |
기술참고자료/Android | 2011. 11. 2. 18:28
ADB 이용해서 패킷 덤프 뜨는 방법입니다.
방법 – ADB 이용 방법)
adb shell mount -t ext3 -o rw,remount /dev/block/mmcblk0p6 /system
adb shell tcpdump -i any -p -s 0 -w /data/packet.pcap
위까지 실행하시면, 패킷 캡쳐링 되는 상태가 됩니다.
필요하신 패킷 캡쳐가 끝나시면, Ctrl-C 로 중지하시고
adb pull /data/packet.pcap
PC 에 packet.pcap 파일 복사하셔서 WireShark 로 열어보시면 끝입니다.
TIP) 삼성전자 단말 QXDM 또는 ADB 사용할 때에 포트 셋팅 법
QXDM 로그 볼 때
1. Hidden Menu 진입 : *#7284#
UART : PDA, USB : MODEM으로 설정
2. port map 변경 방법
319712358 ( 비번 : 0821 )
SIO Mode : port map을 HFK, Diag
ADB 사용 할 때
1. Hidden Menu 진입 : *#7284#
UART : MODEM, USB : PDA으로 설정
2. port map 변경 방법
319712358 ( 비번 : 0821 )
SIO Mode : port map을 Diag, Null
[Android] Android Compatibility Package (0) | 2011.12.22 |
---|---|
[Android] SSL 연결하는 방법 (0) | 2011.11.02 |
[Android] ListView에서의 버튼 이벤트 (0) | 2011.10.18 |
[Android] ListView에 내용이 없을때 (0) | 2011.10.18 |
[Android] 미디어 갤러리를 이용한 파일첨부 (0) | 2011.10.18 |