protected String getCurrentMethodName()
{
return new Exception().getStackTrace()[1].getMethodName();
}
'분류 전체보기'에 해당되는 글 73건
- 2019.11.11 현재 수행중인 메서드 이름 가져오기
- 2019.06.24 Add Jenkins build number at About dialog
- 2018.12.26 Print locale specific number
- 2018.12.26 Programmatically Fire a RCP Selection Event
- 2018.02.09 Generate dummy data quickly
- 2016.11.08 Oracle XE 10g alter default character set
- 2016.07.20 수은전지 호환
- 2015.03.17 Chrome 주소창 및 북마크바 글자가 이상해졌어요.
- 2015.02.26 Unable to ping 127.0.0.1 after cleaing routing table at Windows 7.
- 2013.01.11 using Class.getResource() load resource files in Eclipse
cat plugin_directory/plugin.properties
aboutText=blah blah\n\n\
Build Number:
cat build.xml
...
<target name="before-pde-build">
<echo file="${buildDirectory}/plugins/plug_in_name/plugin.properties" message=${env.BUILD_NUMBER}" append="true"/>
</target>
public static final NumberFormat gLocaleNumberFormatter = NumberFormat.getNumberInstance(Locale.getDefault());
System.out.println (gLocaleNumberFormatter.foramt(12345));
if (mListViewer != null)
{
List sList = mListViewer.getList();
if (sList.getItemCount() > 0)
{
sList.select(0);
sList.notifyListeners(SWT.Selection, new Event());
}
}
http://stackoverflow.com/questions/9463092/how-to-change-oracle-10gr2-express-editions-default-character-set
/* Oracle XE 10g alter default character set */
connect sys/xxxxx as sysdba
shutdown immediate
startup mount
alter system enable restricted session ;
alter system set JOB_QUEUE_PROCESSES=0;
alter system set AQ_TM_PROCESSES=0;
alter database open;
alter database character set internal_use KO16MSWIN949;
shutdown immediate
startup
SQL> select * from nls_database_parameters where parameter = 'NLS_CHARACTERSET';PARAMETER------------------------------VALUE--------------------------------------------------------------------------------NLS_CHARACTERSETKO16MSWIN9491.5V 수은전지,리듐전지,알카라인전지,단추형,버튼형,코인형,button전지,coin전지,
alkaline전지, 배터리(battery) 라고 불리는 자주 사용되는 건전지 종류 및 호환성 명칭 입니다.
- AG3 : LR41, LR736, 392A, CX41 호환
- AG8 : LR55, LR1120 호환
- AG10 : LR54, L1131, LR1130, 189 호환
- AG11 : LR58, LR721 호환
- AG12 : LR43, L1142, LR1142, 186 호환
- AG13 : LR44, L1154, LR1154, GPA76, A76, V13GA 호환
- 357A : SG13, SR44W, 357 호환
출처: http://blog.naver.com/mbssz9/10097259921
- 바탕화면에 있는 Chrome 아이콘 마우스 오른쪽 클릭
- 바로 가기 만들기
- 바로 가기로 만든 Chrome 아이콘 마우스 오른쪽 클릭 >> 속성 >> 대상 "\Application\chrome.exe" --disable-directwrite-for-UI 추가
- 적용
- 바로가기 만든 크롬 아이콘 재실행
출처: https://productforums.google.com/forum/#!category-topic/chrome-ko/windows7/PFPG-U9KL_E
When clearing routing table with "route -f", then
- Fail to ping 127.0.0.1 with general failure
- Unable to use debugger at Eclipse: JDWP Transport dt_socket failed to initialize
- Disable all NICs.
- Execute "route -f" again.
- Enable all NICs and input necessary information such as gate way.
- Reboot computer.
- Check 127.0.0.1 with "route print" command.
- Execute "ping 127.0.0.1" and confirm it works OK.
http://lj4newbies.blogspot.kr/2008/03/using-classgetresource-load-resource.html
