자바로 라인에디터 만들기

lfs의 이미지

import java.lang.*;
import java.io.*;
import java.util.*;
 
public class lineeditor{
    public static void main(String args[]) throws Exception{
        Command command=new Command();
        Console console=System.console();
 
        while(true){
            System.out.print("명령:");
            String inputChar=console.readLine();
 
            if(inputChar.equals("fopen"))
                command.fopen();
            else if(inputChar.equals("fclose"))
                command.fclose();
            else if(inputChar.equals("fsave"))
                command.fsave();
            else if(inputChar.equals("list"))
                command.list();
            else if(inputChar.equals("mods"))
                command.mods();
            else if(inputChar.equals("help"))
                command.help();
            else if(inputChar.equals("exit"))
                break;
            else if(inputChar.equals("quit"))
                break;
            else{
                System.out.println("잘못입력하셨습니다.");
                continue;
            }
 
        }
 
    }
 
}
 
class Command{
    static final int SIZE=1000000;
    TreeMap<Integer,String> map=new TreeMap<Integer,String>();
    Map.Entry<Integer,String> entry;
 
    Scanner scanner=new Scanner(System.in);
    InputStream is=System.in;
    String Kfilename=null;
 
    public void fopen() throws Exception{
 
        System.out.print("파일명 입력>>");
 
        byte[] dataf=new byte[128];
        int fileBytes=is.read(dataf);
        String filename=new String(dataf,0,fileBytes-2);
 
        this.Kfilename=filename;
 
        File file=new File(this.Kfilename);
        boolean isExist=file.exists();
        if(isExist==false){
            System.out.println("파일이 없습니다.");
            return ;
        }
 
        FileReader fr=new FileReader(file);
 
        Integer iNo=1;
        int readCharNo;
        char[] cbuf=new char[SIZE];
 
        while((readCharNo=fr.read(cbuf)) != -1){
            String iData=new String(cbuf,0,readCharNo);
 
            String[] Datasp=iData.split("\n");
            for(String Da:Datasp){
                map.put(iNo,Da);
                iNo+=1;
            }
        }
        fr.close();
 
        System.out.println("메모리입력되었습니다...");
    }
 
    public void fclose() throws Exception{
        map.clear();
        System.out.println("메모리해제되었습니다...");
 
    }
 
    public void fsave() throws Exception{
        File file=new File(this.Kfilename);
        FileWriter fw=new FileWriter(file);
 
        NavigableMap<Integer,String> descendingMap=map.descendingMap();
        NavigableMap<Integer,String> ascendingMap=descendingMap.descendingMap();
        Set<Map.Entry<Integer,String>> ascendingEntrySet=ascendingMap.entrySet();
        for(Map.Entry<Integer,String> en:ascendingEntrySet){
            fw.write(en.getValue()+"\n");
        }
        fw.flush();
        fw.close();
 
        System.out.println("저장되었습니다...");
    }
 
    public void list() throws Exception{
        NavigableMap<Integer,String> descendingMap=map.descendingMap();
        NavigableMap<Integer,String> ascendingMap=descendingMap.descendingMap();
        Set<Map.Entry<Integer,String>> ascendingEntrySet=ascendingMap.entrySet();
        for(Map.Entry<Integer,String> en:ascendingEntrySet){
            System.out.println(en.getKey()+"\t"+en.getValue());
        }
 
        System.out.println("목록이 표시되었습니다...");
    }
 
    public void mods() throws Exception{
        System.out.print("편집할 라인수 입력:");
        int LineNo=scanner.nextInt();
        /*
        if(LineNo.equals("\0")){
            System.out.println("잘못 입력하셨습니다.m");
            return ;
        }
        */
        entry=map.floorEntry(LineNo);
        System.out.println("편집라인:"+entry.getKey()+"\t"+entry.getValue());
 
        System.out.print("편집문자입력:");
 
        byte[] datas=new byte[100];
        int nameBytes=is.read(datas);
        String ModLine=new String(datas,0,nameBytes-2);
 
        map.put(entry.getKey(),ModLine);
 
        System.out.println("라인 편집되었습니다...");
    }
 
    public void help() throws Exception{
        System.out.println("★라인에디터★");
        System.out.println("도움말 0.1버젼");
        System.out.println("fopen: 화일을 열기");
        System.out.println("fclose:화일을 닫기");
        System.out.println("fsave: 화일을 저장");
        System.out.println("list:  모든행 표시");
        System.out.println("mods:  지정행 수정");
        System.out.println("exit:quit:  끝마침");
        System.out.println("help:  도움말 표시");
        System.out.println("명령어 도움말입니다.");
    }
}

이상입니다.
소스 올려달라는 사람이 있어서 올렸습니다.

Forums: 

댓글 달기

Filtered HTML

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

BBCode

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param>
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

Textile

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • You can use Textile markup to format text.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Markdown

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • Quick Tips:
    • Two or more spaces at a line's end = Line break
    • Double returns = Paragraph
    • *Single asterisks* or _single underscores_ = Emphasis
    • **Double** or __double__ = Strong
    • This is [a link](http://the.link.example.com "The optional title text")
    For complete details on the Markdown syntax, see the Markdown documentation and Markdown Extra documentation for tables, footnotes, and more.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Plain text

  • HTML 태그를 사용할 수 없습니다.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 줄과 단락은 자동으로 분리됩니다.
댓글 첨부 파일
이 댓글에 이미지나 파일을 업로드 합니다.
파일 크기는 8 MB보다 작아야 합니다.
허용할 파일 형식: txt pdf doc xls gif jpg jpeg mp3 png rar zip.
CAPTCHA
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.