일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
- tcp네트워크
- 나지보 특성
- 스랄 특성
- 명령어
- 자바
- 변경된 정보
- End of Darkness
- tcp
- unity
- 컬렉션 프레임
- 게임
- 히오스
- 리눅스
- TCP 네트워크 방식의 연결
- 안드로이드
- 아이폰
- 비행기 모드
- 에셋
- 아이패드
- php 홈디렉토리 변경방법
- 집 정리
- 기업의 행포
- 안드로이드 Application Lifecycle
- 나지보
- 어플
- 벨팡
- 소캣(Socket)
- game
- Collection Framework
- 포트(Port)
- Today
- Total
목록Unity3D (108)
Do Something IT
JavaScript 에서 Excel 파일의 sheet정보를 읽어 Csv로 저장 할때 다국어가 ?? 등 으로 깨지는경우가 발생 하였다. 무엇이 문제인지 알아보니 Csv로 저장될때 ENCODING이 ANSI로 저장되어 해당 국가 문자열이 깨져 나왔다 이 해결방안은 function saveAsCSV(sheet, tmpdir) { if (!F.FolderExists(tmpdir)) { F.CreateFolder(tmpdir); } var csvFile = tmpdir + "\\" + sheet.Name + ".csv"; // http://msdn.microsoft.com/en-us/library/office/ff198017.aspx // XlFileFormat Enumeration Table: CSV (6) s..
using UnityEngine; using System.Collections; using UnityEditor; using System.Security.Cryptography; using System.Text; using System.IO; using System; public class csCDNPIDEncipherment : EditorWindow { public delegate string EnDel(string InputText, string Password); string _strTarget = ""; string _strEncoTarget = ""; static float _width = 1000; static float _height = 800; float _fontWidth = 15; s..
void OnGUI() { GUI.DrawTexture(ResizeGUI(Rect(100, 100, 100, 100)), GuiTexture); } Rect ResizeGUI(Rect _rect) { float FilScreenWidth = _rect.width / 800; float rectWidth = FilScreenWidth * Screen.width; float FilScreenHeight = _rect.height / 600; float rectHeight = FilScreenHeight * Screen.height; float rectX = (_rect.x / 800) * Screen.width; float rectY = (_rect.y / 600) * Screen.height; return..
출처 : 바로가기 1. 문자 중 숫자만 남기고 모두 제거 var str = "qsdf3AS1DF#$%0%"; str = str.replace(/[^0-9]/g,''); alert(str); 결과 : 310 2. trim함수 구현 String.prototype.trim = fTrim; function fTrim() { return this.replace(/^\s*/ ,"").replace(/\s*$/ ,""); } var str = " test "; str = str.trim(); alert(str);