- 좋은 개발자
- emplace_back
- postman
- postman session
- 프런트엔드
- postman excel
- 다빈치 리졸브
- postman pre-request
- postman collection
- oracle
- 우수한 프런트 개발자
- c#
- Intellij
- Java
- Interaction developer
- Android
- LSL_Script
- Unity
- postman tests
- UI/UX Engineer
- Front-end developer
- postman html parse
- C++
- solidity
- postman collection variables
- Android/iOS Developer
- web developer
- MFC
- postman csv
- postman automations
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Today
- Total
목록Develop (kids) (38)
david's daily developer note
DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance(); DocumentBuilder builder = factory.newDocumentBuilder(); InputStream istream = new ByteArrayInputStream(s.getBytes("utf-8")); Document doc = builder.parse(istream); Element order = doc.getDocumentElement(); NodeList items = order.getElementsByTagName("elementName"); 1,2 : XML Parsing을 위한 Document생성. 3 : XML을 읽기 위해 UTF-8형식의 스트림..
사용자 클레스 : Serializable 구현 public class Camera implements Serializable { } 보내는 쪽~ ArrayList Cameras = new ArrayList(); Cameras.add(testCamera1); Cameras.add(testCamera2); intent.putExtra("Cameras" , Cameras); 받는 쪽~ Serializable camerasSerial = intent.getSerializableExtra("Cameras"); ArrayList cameras = (ArrayList)camerasSerial; for( Camera camera : cameras) { adapter.addItem(camera); }
Context mContext = getApplicationContext(); LayoutInflater inflater = (LayoutInflater) mContext.getSystemService(LAYOUT_INFLATER_SERVICE); View layout = inflater.inflate(R.layout.systeminfo,null); AlertDialog.Builder aDialog = new AlertDialog.Builder(MobileSmartClient.this); aDialog.setTitle("Connection Information"); aDialog.setView(layout); aDialog.setPositiveButton("Connection", new DialogInt..
// says beep to owner the first time owner says something in main chat; integer listen_handle; default { state_entry() { // Listen 이벤트를 추가한다. // 인자는 순서대로, 1. 채팅 채널, 2. 아바타나 Prim 필터, 3. UUID 필터, 4. 메세지 필터 // 여기서 필터는 명시된 내용만 듣는 다는 것이다. listen_handle = llListen(0, "", llGetOwner(), ""); } listen( integer channel, string name, key id, string message ) { llOwnerSay("beep"); if(message == "바껴라하얀색") ll..