2022년 4월 13일 수요일

NetBeans 한글 출력

C:\Program Files\NetBeans-13\netbeans\etc 폴더에서

netbeans.conf 파일 수정

netbeans_default_options 가장 뒤에 추가

netbeans_default_options="............. -J-locale=UTF-8 -J-Dfile.encoding=UTF-8"



[python] subprocess

proc.py import asyncio from argparse import ArgumentParser from asyncio import sleep async def process_function(user, file_path):     if use...