Program Language
-
You can download OpenJDK 1.8 (also known as OpenJDK 8) from several sources. Below are some reliable places where you can get it:1. Adoptium (formerly AdoptOpenJDK)Adoptium provides prebuilt OpenJDK binaries. Here's how you can download it from Adoptium:Go to the Adoptium download page.Select "OpenJDK 8 (LTS)" as the version.Choose your operating system and architecture.Click on the "Latest rele..
Where can I download openjdk 1.8?You can download OpenJDK 1.8 (also known as OpenJDK 8) from several sources. Below are some reliable places where you can get it:1. Adoptium (formerly AdoptOpenJDK)Adoptium provides prebuilt OpenJDK binaries. Here's how you can download it from Adoptium:Go to the Adoptium download page.Select "OpenJDK 8 (LTS)" as the version.Choose your operating system and architecture.Click on the "Latest rele..
2024.06.11 -
c#에서 텍스트 파일을 생성하는데, 경로에 대한 액세스가 거부되었습니다. 라는 에러에 직면하였다. 원인은 명확하다. 1. 파일명까지 작성하였는가? 나의 경우, 경로만 입력하였다 ㅠ 경로 뿐 아니라 파일명까지 전달했는지 체크해보자! string savePath = Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData) + "\\jsonData.txt";
[C#] 텍스트 파일 저장 액세스 거부c#에서 텍스트 파일을 생성하는데, 경로에 대한 액세스가 거부되었습니다. 라는 에러에 직면하였다. 원인은 명확하다. 1. 파일명까지 작성하였는가? 나의 경우, 경로만 입력하였다 ㅠ 경로 뿐 아니라 파일명까지 전달했는지 체크해보자! string savePath = Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData) + "\\jsonData.txt";
2023.09.20 -
This worked for me! I use html2canvas. And I wrote allowtain and useCORS options. //html2canvas and download var canvasPromise = html2canvas(document.getElementById("myHTML"), { allowTaint: true, useCORS: true, foreignObjectRendering: true }); canvasPromise.then(function(canvas) { var myImage = new Image; myImage.crossOrigin="anonymous" myImage = canvas.toDataURL(); }); Don't forget to describe ..
[Solved] html2canvas Tainted canvases may not be exportedThis worked for me! I use html2canvas. And I wrote allowtain and useCORS options. //html2canvas and download var canvasPromise = html2canvas(document.getElementById("myHTML"), { allowTaint: true, useCORS: true, foreignObjectRendering: true }); canvasPromise.then(function(canvas) { var myImage = new Image; myImage.crossOrigin="anonymous" myImage = canvas.toDataURL(); }); Don't forget to describe ..
2023.09.19 -
안녕하세요. 팀드모네입니다. C# httpListener를 사용하여 REST API 서버 구축하는 방법을 공유드립니다. AJAX를 통해 데이터를 전송하고 C# 서버 (httpListener)를 통해 데이터를 받은 후 잘 되었으면 success를 회신하는 A부터 Z급 예제입니다. 이 포스팅은 계속 업데이트 예정입니다! 로이 필딩이 언급하였던 것처럼, REST 규칙을 다 지켜야 RESTful API겠죠? (ㅠㅠㅠㅠ) 무튼 JSONP를 사용하지 않도록, CORS 문제도 해결해뒀습니다. nuget으로 받기 편하시게, using 남겨드립니다. 한글이 깨지지 않도록 인코딩 처리도 했습니다 :) 0. AJAX 요청 var data= { "id":"han", "name" : "hoon" } $.ajax({ type: ..
[5분 내로] C# httpListener를 사용하여 REST API 서버 구축하기안녕하세요. 팀드모네입니다. C# httpListener를 사용하여 REST API 서버 구축하는 방법을 공유드립니다. AJAX를 통해 데이터를 전송하고 C# 서버 (httpListener)를 통해 데이터를 받은 후 잘 되었으면 success를 회신하는 A부터 Z급 예제입니다. 이 포스팅은 계속 업데이트 예정입니다! 로이 필딩이 언급하였던 것처럼, REST 규칙을 다 지켜야 RESTful API겠죠? (ㅠㅠㅠㅠ) 무튼 JSONP를 사용하지 않도록, CORS 문제도 해결해뒀습니다. nuget으로 받기 편하시게, using 남겨드립니다. 한글이 깨지지 않도록 인코딩 처리도 했습니다 :) 0. AJAX 요청 var data= { "id":"han", "name" : "hoon" } $.ajax({ type: ..
2023.09.18 -
Enabled를 Fasle로 처리하시면 됩니다 ^^
C#에서 TextBox 커서 선택 못하게 하기Enabled를 Fasle로 처리하시면 됩니다 ^^
2023.09.15 -
고민하면 더 간단한 방법이 있을 것 같습니다. 아무튼, 이렇게도 작업이 가능합니다. Resources 폴더 내 t_logo.png를 상대 경로로 불러오겠습니다. 1. Resource 파일 위치 2. XAML 부분 3. Resources.resx에 이미지 파일 위치 기술 ..\Resources\t_logo.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 4. 코드 부분 var iconHandle = MyNamespace.Properties.Resources.t_logo_png.GetHicon(); this.notifyIcon.Icon = System.Drawin..
[C# WPF] 상대 경로로 이미지 가져오기고민하면 더 간단한 방법이 있을 것 같습니다. 아무튼, 이렇게도 작업이 가능합니다. Resources 폴더 내 t_logo.png를 상대 경로로 불러오겠습니다. 1. Resource 파일 위치 2. XAML 부분 3. Resources.resx에 이미지 파일 위치 기술 ..\Resources\t_logo.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 4. 코드 부분 var iconHandle = MyNamespace.Properties.Resources.t_logo_png.GetHicon(); this.notifyIcon.Icon = System.Drawin..
2023.09.14