<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
  <channel>
    <title>단순하게 살기</title>
    <link>https://minilog.tistory.com/</link>
    <description>Best Item들을 소소하게 적어보는 작은 공간입니다.</description>
    <language>ko</language>
    <pubDate>Mon, 25 May 2026 23:01:58 +0900</pubDate>
    <generator>TISTORY</generator>
    <ttl>100</ttl>
    <managingEditor>야매코더</managingEditor>
    <image>
      <title>단순하게 살기</title>
      <url>https://t1.daumcdn.net/cfile/tistory/2567244455157A9A29</url>
      <link>https://minilog.tistory.com</link>
    </image>
    <item>
      <title>[JAVA] mouse 제어</title>
      <link>https://minilog.tistory.com/236</link>
      <description>java 마우스 제어
/******************************************
 
java version : 18.0.1.1
 
******************************************/

package automouse;

import java.awt.AWTException;
import java.awt.MouseInfo;
import java.awt.PointerInfo;
import java.awt.Robo..</description>
      <category>프로그래밍/JAVA</category>
      <category>Auto</category>
      <category>java</category>
      <category>Mouse</category>
      <category>source</category>
      <category>src</category>
      <author>야매코더</author>
      <guid isPermaLink="true">https://minilog.tistory.com/236</guid>
      <comments>https://minilog.tistory.com/236#entry236comment</comments>
      <pubDate>Thu, 1 Dec 2022 15:31:38 +0900</pubDate>
    </item>
    <item>
      <title>ibis ib-800l 스톱워치 사용법</title>
      <link>https://minilog.tistory.com/235</link>
      <description></description>
      <category>ib-800</category>
      <category>ibis</category>
      <category>ibis ib-800</category>
      <category>stopwatch</category>
      <category>스톱워치설정</category>
      <author>야매코더</author>
      <guid isPermaLink="true">https://minilog.tistory.com/235</guid>
      <comments>https://minilog.tistory.com/235#entry235comment</comments>
      <pubDate>Mon, 5 Oct 2020 22:01:11 +0900</pubDate>
    </item>
    <item>
      <title>[Java] 행렬 곱셈</title>
      <link>https://minilog.tistory.com/234</link>
      <description>행렬1, 행렬2&amp;nbsp; 입력하여 곱셈값 반환&amp;nbsp;
public class test {
    public static int[][] compute(int[][]arr1, int[][]arr2){        
        int[][] answer = new int[arr1.length][arr2[0].length];
        
        for(int i =0 ; i &amp;lt; arr1.length ;  i++) {
         ..</description>
      <category>프로그래밍/JAVA</category>
      <category>java</category>
      <category>source</category>
      <category>곱셈</category>
      <category>행렬</category>
      <author>야매코더</author>
      <guid isPermaLink="true">https://minilog.tistory.com/234</guid>
      <comments>https://minilog.tistory.com/234#entry234comment</comments>
      <pubDate>Thu, 13 Aug 2020 20:27:12 +0900</pubDate>
    </item>
    <item>
      <title>[Java] 경로명 파싱</title>
      <link>https://minilog.tistory.com/233</link>
      <description>경로 '\' 값으로 파싱이 필요할때....StringTokenizer 를 사용
import java.util.ArrayList;
import java.util.StringTokenizer;

public class PathStringTokenizer {
	public static void main(String[] args) {
		// TODO Auto-generated method stub
		String src = System.getProperty(..</description>
      <category>프로그래밍/JAVA</category>
      <category>java</category>
      <category>Parsing</category>
      <category>Path</category>
      <category>StringTokenizer</category>
      <category>경로명파싱</category>
      <author>야매코더</author>
      <guid isPermaLink="true">https://minilog.tistory.com/233</guid>
      <comments>https://minilog.tistory.com/233#entry233comment</comments>
      <pubDate>Sun, 12 Jul 2020 09:21:11 +0900</pubDate>
    </item>
    <item>
      <title>[Java] xml 파싱 예제</title>
      <link>https://minilog.tistory.com/232</link>
      <description>xml data&amp;nbsp;
더보기

&amp;lt;?xml&amp;nbsp;version=&quot;1.0&quot;&amp;nbsp;encoding=&quot;UTF-8&quot;?&amp;gt; &amp;lt;members&amp;gt; &amp;nbsp;&amp;nbsp;&amp;lt;member&amp;gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;lt;number&amp;gt;1&amp;lt;/number&amp;gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;lt;name&amp;gt;홍길동&amp;lt;/name&amp;gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;lt;a..</description>
      <category>프로그래밍/JAVA</category>
      <category>dom</category>
      <category>java</category>
      <category>Parse</category>
      <category>parser</category>
      <category>Sax</category>
      <category>XML</category>
      <category>파싱</category>
      <author>야매코더</author>
      <guid isPermaLink="true">https://minilog.tistory.com/232</guid>
      <comments>https://minilog.tistory.com/232#entry232comment</comments>
      <pubDate>Sat, 11 Jul 2020 20:37:28 +0900</pubDate>
    </item>
    <item>
      <title>[Java] 경로내 파일, 폴더개수 확인 (서브폴더 포함)</title>
      <link>https://minilog.tistory.com/231</link>
      <description>import java.io.File;

public class test01 {
	
	public static void main(String[] args) {
		try {			
			String path = &quot;C:\\tools\\Java\\workspace\\test001&quot;;//System.getProperty(&quot;user.dir&quot;);
			
			(new test01()).showFileList(path);

		} catch (Exception ex)..</description>
      <category>프로그래밍/JAVA</category>
      <category>java</category>
      <category>Path</category>
      <category>재귀호출</category>
      <category>파일개수</category>
      <category>파일명</category>
      <category>폴더개수</category>
      <category>폴더명</category>
      <author>야매코더</author>
      <guid isPermaLink="true">https://minilog.tistory.com/231</guid>
      <comments>https://minilog.tistory.com/231#entry231comment</comments>
      <pubDate>Sat, 11 Jul 2020 13:58:47 +0900</pubDate>
    </item>
    <item>
      <title>fork()  / execl()</title>
      <link>https://minilog.tistory.com/229</link>
      <description>&amp;nbsp;
#include &amp;lt;unistd.h&amp;gt;  

int fatal(char *p){ 
    perror(p); 
    exit(1); 
} 
//-------------------------------------------------------- 
main(){ 
    int p_id; 
    switch(p_id = fork()){                         //-- #1      
      case -1:  ..</description>
      <category>프로그래밍/C/C++/etc</category>
      <category>execl()</category>
      <category>fork()</category>
      <author>야매코더</author>
      <guid isPermaLink="true">https://minilog.tistory.com/229</guid>
      <comments>https://minilog.tistory.com/229#entry229comment</comments>
      <pubDate>Thu, 7 Nov 2019 23:42:04 +0900</pubDate>
    </item>
    <item>
      <title>[Java] 콘솔 입력</title>
      <link>https://minilog.tistory.com/228</link>
      <description>&amp;nbsp;
import java.util.Scanner;
 
public class ScannerTest {
 
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        //String input = sc.next();     // 한자 입력 
        String input = sc.nextLine(); // 한줄 입력 
   ..</description>
      <category>프로그래밍/JAVA</category>
      <category>java</category>
      <category>scanner</category>
      <category>콘솔입력</category>
      <category>한줄입력</category>
      <author>야매코더</author>
      <guid isPermaLink="true">https://minilog.tistory.com/228</guid>
      <comments>https://minilog.tistory.com/228#entry228comment</comments>
      <pubDate>Wed, 28 Aug 2019 20:23:45 +0900</pubDate>
    </item>
    <item>
      <title>[Java] 문자열 압축( 알파벳 개수 압축)</title>
      <link>https://minilog.tistory.com/227</link>
      <description>public class StringCompress {
	public static void main(String[] args) {
		// TODO Auto-generated method stub
		System.out.println(compress(&quot;aasseerffffff&quot;)); // 압축성공
		System.out.println(compress(&quot;aaabbbsss&quot;)); // 압축성공
		System.out.println(compress(&quot;qweas..</description>
      <category>프로그래밍/JAVA</category>
      <category>Compress</category>
      <category>java</category>
      <category>Sample</category>
      <category>동일문자</category>
      <category>예제</category>
      <category>중복문자개수</category>
      <author>야매코더</author>
      <guid isPermaLink="true">https://minilog.tistory.com/227</guid>
      <comments>https://minilog.tistory.com/227#entry227comment</comments>
      <pubDate>Wed, 29 May 2019 23:19:45 +0900</pubDate>
    </item>
    <item>
      <title>[Java] 문자열내 특정 문자 개수 확인</title>
      <link>https://minilog.tistory.com/226</link>
      <description>자바 문자열내 특정한 문자의 개수를 확인할때 사용하는 샘플 코드&amp;nbsp;
&amp;nbsp;

import java.util.regex.Matcher;
import java.util.regex.Pattern;

public class StringParse {

	public static void main(String[] args) {
		// TODO Auto-generated method stub
		String s = &quot;!@dddddd!@gggg!@bbb..</description>
      <category>프로그래밍/JAVA</category>
      <category>java</category>
      <category>matcher</category>
      <category>Sample</category>
      <category>특정문자개수</category>
      <author>야매코더</author>
      <guid isPermaLink="true">https://minilog.tistory.com/226</guid>
      <comments>https://minilog.tistory.com/226#entry226comment</comments>
      <pubDate>Wed, 29 May 2019 23:06:58 +0900</pubDate>
    </item>
  </channel>
</rss>