Coder Social home page Coder Social logo

orafile-parser's Introduction

orafile-parser

Oracle configuration file parser.One simple parser and writer for .ora file.

jdk-1.8 test-passing

Syntax Rules for Configuration Files

Syntax Rules for Configuration Files

Usage

public class Test {

    public static void main(String[] args) throws OrafileParseException, OrafileEditException {
        Orafile orafile = OrafileParser.parse("LISTENER=  \n" +
                "  (DESCRIPTION=  \n" +
                "    (ADDRESS_LIST=  \n" +
                "      (ADDRESS=(PROTOCOL=tcp)(HOST=sale-server)(PORT=1521))  \n" +
                "      (ADDRESS=(PROTOCOL=ipc)(KEY=extproc))))  \n" +
                "SID_LIST_LISTENER=  \n" +
                "  (SID_LIST=  \n" +
                "    (SID_DESC=  \n" +
                "      (GLOBAL_DBNAME=sales.us.acme.com)  \n" +
                "      (ORACLE_HOME=/oracle10g)  \n" +
                "      (SID_NAME=sales))  \n" +
                "    (SID_DESC=  \n" +
                "      (SID_NAME=plsextproc)  \n" +
                "      (ORACLE_HOME=/oracle10g)  \n" +
                "      (PROGRAM=extproc))) ");
        //orafile.add(new SimpleOraElement("SID_LIST_LISTENER","qq"));//error
        orafile.getListElement("SID_LIST_LISTENER")
                .getListElement("SID_LIST")
                .add(new ListOraElement("SID_DESC",Arrays.asList(new SimpleOraElement("SID_NAME","sidname"),new SimpleOraElement("ORACLE_HOME","/orahome"),new SimpleOraElement("PROGRAM","program"))));
        System.out.println(orafile);
    }

}

orafile-parser's People

Contributors

clyoudu avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.