카페검색 본문
카페글 본문
-
Spring WebClient with SSL and custom JSON serialization/deserialization 2024.12.15해당카페글 미리보기
Spring WebClient with SSL and custom JSON serialization/deserialization private void client() throws Exception { ObjectMapper objectMapper = new ObjectMapper(); objectMapper.registerModule(new JavaTimeModule()); objectMapper.configure...
-
package.json 파일 생성 2024.11.27해당카페글 미리보기
(노드에서 프로젝트 기본정보 의존성 정보 저장하는 파일) 터미널 창에서 npm 명령어 사용 c: odedev>npm init 기본값으로 엔터치고 넘어가면 자동 생성 (npm은 노드설치할때 자동으로 설치되는 노드패키지 관리모듈) (실행안되면 Window PowerShell...
-
해당카페글 미리보기
-
[Mbed] mbed_app.json 2024.08.22해당카페글 미리보기
파일명을 mbed_app.json으로 교체하세요 그러면 printf문이 바로 동작합니다. mbed.json 434B { "target_overrides": { "*": { "platform.stdio-baud-rate": 115200, "platform.stdio-buffered-serial": 1, "target.c_lib": "std", "target.printf_lib...
-
[JS]2024.02.08 기본구조,연산자,형변환,제어문,배열,함수,내장객체,js파일,이벤트,String함수,JSON 2024.02.08해당카페글 미리보기
카카오맵 오픈소스 javascript_20240227.zip 139.31KB ◎ 2024년 2월 26일 (월) 수업내용 ◎ - 예제:계산기 - DOM, this, JSON, Live Server설치, 카카오 우편번호 서비스 javascript_20240226.zip 57.37KB ◎ 2024년 2월 23일 (금) 수업내용 ◎ - String...
-
[컴퓨터과학과/참고] JSON, JSON Parser 2023.04.06해당카페글 미리보기
https://www.json.org/json-ko.html JSON JSON (JavaScript Object Notation)은 경량의 DATA-교환 형식이다. 이 형식은 사람이 읽고 쓰기에 용이하며, 기계가 분석하고 생성함에도 용이하다. JavaScript Programming Language, Standard ECMA-262 3rd...
-
json => excel 2023.11.02해당카페글 미리보기
import requests import pandas as pd res = requests.get('https://jsonplaceholder.typicode.com/users') users = res.json() user_list = [] for user in users: user_list.append([user['username'], user['email'], user['phone'], user['company...
-
[Flutter] - Hive and JSON 2023.03.28해당카페글 미리보기
https://www.youtube.com/watch?v=uAlrHM5gkAM https://programmers-story.tistory.com/17 [flutter] Json 직렬화 하는 방법 및 '.g.dart'파일이 안만들어지는 경우 해결방안 https://flutter-ko.dev/docs/development/data-and-backend/json JSON과...
-
평일주간 단기과정 국비지원교육_JAVA JSP Ajax,jQuery DOM,JSON 활용과정 2023.06.22해당카페글 미리보기
기본으로 자바 자료구조, Thread, Stream까지 나아가 자바웹 기본&활용,JDBC 프로그래밍 활용,XML 이후 Ajax,jQuery DOM,JSON까지 전문적으로 배울 수 있는 초보자를 위한 실무과정 입니다. ◆ 교육개강 - 6월29일 ~7월7일 ◆ 교육과정 - 초보자를위한...
-
[JS]2023.07.31 변수,연산자,형변환,Math,조건문,반복문,배열,함수,Scope,이벤트,DOM,this,JSON 2023.07.31해당카페글 미리보기
◎ 2023년 08월 16일 (수) 수업내용 (전체소스) ◎ - JSON, 카카오 우편번호, 카카오 맵 ※ 참조 http://pretyimo.cafe24.com/lectureRead.do?lectureno=190 http://pretyimo.cafe24.com/lectureRead.do?lectureno=407 javascript_20230816.zip 142.94KB...