목록ERROR (22)
SPRING :: NOTE
간혹 APM_SETUP을 설치하실때 이러한 경고메시지가 뜨고 설치가 진행되지 않습니다. 바로 80번 포트가 사용중인데요, 다른 서버 프로그램이나 웹브라우저 등 80번 포트를 사용하고 있으면 설치가 되지 않습니다. 이럴땐 첨부해놓은 파일을 다운받으셔서 80번 포트를 사용하고 있는 프로그램들을 잠시 꺼두시면 됩니다. 다른 서버프로그램을 사용하시면 APM_SETUP을 사용하지 못하구요. 꼭 함께 쓰셔야하겠다면 포트를 바꿔주는 방법이 있습니다만 이번 포스팅에서는 그부분을 생략합니다~ 일단 소프트웨어가 필요한데요. 아래 링크에서 소프트웨어를 다운받아주세요~ 다운받은 파일을 실행시켜주시면 이런 창이 뜨는데요 선택된 부분을 보시면 Local Port에 80번이라 써있습니다. 더블클릭하시면 상세정보가 나옵니다. 저는 ..
java se development kit (JDK) not found. error:failed to find java version for 'C:\Windows\system32\java.exe': [2] 지정된 파일을 찾을 수 없습니다. android SDK relies on the Java SE Development Kit (JDK).Go to http://java.oracle.com > Downloads > Java SE > JDK to download and install a JDK.. 이렇게 에러가 난다면, 첫번째 해결방법 JAVA SE 개발자 킷을 다운받는다.JAVA SE Download
Windows XP 작업표시줄에서 화면에서 벗어난 프로그램을 클릭후 alt키+space키를 누른다. 그 후 m키를 누른다. 그상태에서 방향키만 움직여서 화면안으로 옮긴다.(Select the hidden or misplaced windows from the taskbar, hit Alt+Space, press M, and finally press any one of the arrow keys (doesn’t matter which one you press) before moving the mouse.) Windows 7 윈도우키+p키를 동시에 누른후, 옵션 '확장'(Extend)선택한다. 그 후 화면에서 사라진 프로그램을 작업표시줄에서 마우스로 클릭후 윈도우키+shift키+ ←방향키 를 동시에 누르고 안..
오류1error MSB8031: Building an MFC project for a non-Unicode character set is deprecated. You must change the project property to Unicode or download an additional library. See http://go.microsoft.com/fwlink/p/?LinkId=286820 for more information.C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\V120\Microsoft.CppBuild.targets3765converter 위와같은 에러가 난다. Visual Studio 2013부터는 유니코드 사용을 권장하기 때문에 MBCS용..
error C4996: 'fopen': This function or variable may be unsafe. Consider using fopen_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details. 위와같은 에러 발생 시, include 전에 아래와 같은 코드 한줄 추가#define _CRT_SECURE_NO_DEPRECATE 예) #define _CRT_SECURE_NO_DEPRECATE #include #include #include 혹은, fopen이나 scanf등 비슷한 함수 사용시 fopen_s, scaf_s등 s 함수를 써주면 해결. 해결되셨다면 아래 공감 한번 눌러주세요~
error C4996: 'fopen': This function or variable may be unsafe. Consider using fopen_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details. 해결 : It is a stressfull job moving from one version of VC++ to another without microsoft making is worse by adding: C4996: 'itoa': The POSIX name for this item is deprecated. Instead, use the ISO C++ conformant name: _ito..