본문 바로가기

IT Study60

JAR 파일 JDK 빌드 버전 찾기 1. war나 jar 압출 해제 2. CMD 열고 Class 파일이 있는 주소로 이동 3. javap -v {Something}.class 명령어 입력 4. major version 확인 mojor version = 50 -> java6 mojor version = 51 -> java7 mojor version = 52 -> java8 2022. 12. 9.
TNS 리스너에 로컬 추가 tnsnames.ora에 등록된 로컬 DB 접속 정보를 이용하기 위해서는 tnsnames.ora에 등록된 접속 정보가 listener.ora에도 동일하게 등록되어 있어야한다. tnsnames.ora # tnsnames.ora Network Configuration File: C:\oracle\product\10.2.0\db_1\network\admin\tnsnames.ora # Generated by Oracle configuration tools. LISTENER_ORCL = (ADDRESS = (PROTOCOL = TCP)(HOST = localhost)(PORT = 1521)) ORCL = (DESCRIPTION = (ADDRESS_LIST = (ADDRESS = (PROTOCOL = TCP)(HO.. 2022. 7. 6.
[SQL DEVELOPER] 경고 - 일부 모듈을 설치하지 못했습니다. 증상 : "경고 - 일부 모듈을 설치하지 못했습니다." 라는 메시지와 함께 정상적으로 실행이 되지 않는다. 해결 : C:\Users\사용자명\AppData\Roaming\SQL Developer 폴더 삭제 및 하위 파일들 제거 (제거가 두려우면 이름만 변경해서 보존 가능하다) 정상 동작 이후 SQL Developer의 설정이 초기화 된다. 2022. 7. 5.
[VirtualBox] 가상머신의 세션을 열 수 없습니다 오류 가상머신 구동중에 위의 오류로 인해 많은 시간을 낭비했는데 아래 링크의 솔루션 덕분에 해결했다. https://besttech.tistory.com/27 [Virtual Box]실행시 오류/code -1073741819 (0xc0000005)/E_FAIL (0x80004005) 오랜만에 Virtual Box를 사용하는데 아래와 같은 오류가 발생 했습니다. 가상 머신 test의 세션을 열 수 없습니다. The virtual machine 'test' has terminated unexpectedly during startup with exit code -1.. besttech.tistory.com 원인은 네이버 E-Book 보느라 Fasoo DRM Client가 설치되었는데 충돌이 난 것 같다. E-Boo.. 2022. 3. 16.
[C#] Stopwatch를 사용하여 작업 속도 측정 업무 중에 속도 개선해야 할 일이 있어서 측정을 위해 테스트 코드로 작성해봤다. using System.Diagnostics; Stopwatch sw = new Stopwatch(); sw.Start(); // Do Something sw.Stop(); Console.Write(sw.ElapsedMilliseconds.ToString() + "ms"); 2021. 11. 22.
[C#][.Net WinForm][오류해결] the designer could not be shown for this file because none of the classes within it can be designed 윈폼 개발중에 아래의 오류를 겪었는데 이 문제를 해결하기 위해 검색했다. 프로젝트 속성 > Build > Platform Target이 x64에서 Any CPU로 변경했더니 정상적으로 Design Mode 진입이 되었다. https://stackoverflow.com/questions/6683255/the-designer-could-not-be-shown-for-this-file-because-none-of-the-classes-within The designer could not be shown for this file because none of the classes within it can be designed We have the following shared component: public cl.. 2021. 11. 19.