Com_sheet :: A command line spreadsheet application

com_sheet is a basic, lightweight command line spreadsheet application.
Latest release: v0.4 beta
Features ::
> Add any number of columns, rows
> Search
> Sort
> Edit
> Delete
> Formulaes
> Save to file (in both tabular and parsable formats)
> Load saved spreadsheets
> Colors
GitHub repo
Clone with:
git clone git://github.com/0pointr/com_sheet.git
Please read the files README and FORMULAE for instructions on compilation, usage and the current limitations.
Suggestions, critics and feature requests are all welcome.
Screenshots:
Last edited by debdj (2013-01-26 16:27:59)

Obviously you can't read from the scanner. Instead you have to read from request parameters.
So you have to take a step back and define what values are being input into your application.
At its most basic you could do it as a jsp page with a textfield/textarea which the user could type into instead of typing on the console input.
For instance if your application asks the user to enter their name, and then reads the name from System.in, then you have on your jsp page a <input type="text"> and a submit button.
In the servlet which gets run when you submit the button you get the user's name via request.getParameter().
At that point you have your input String, and have removed System.in from the process.
But you are not just limited to text input with an html form. You can use any of the controls available. So asking a user "What is your favorite colour?" Instead of having them type in the answer, you could have them choose it from a radio group or dropdown select box.
Either way it still gets to the Servlet as a String via request.getParameter.
Steps you might follow
1 - identify the values being input into your program
2 - Write your jsp - start with just textfields
3 - Write your servlet handler to retrieve the values from the JSP.
4 - Determine the appropriate control on an html form to replace each input
5 - Modify the textfields to other controls (dropdown/radio button) as appropriate.
Theoretically the rest of your program doesn't need to change once you have the value in a String.
Your method of reading just changes from using Scanner and System.int to request.getParameter()
Similarly your method of writing would change from using System.out to a response JSP page.
hope this helps,
evnafets

Similar Messages

  • Command line Twitter application suggestions

    [sorry if this is the wrong place, feel free to move it and yell at me]
    I can't seem to find any real command line Twitter applications, and wondered if anyone could recommend one? To read as well as write to Twitter, that is. I realise how easy it is to tweet from the prompt.
    I'm currently running Twitter through bitlbee inside of irssi, but I'd rather have it separate, and hopefully support for things like retweeting.
    If noone knows of much, I may have a new project on my hands!

    I think that the fact that Twitter no longer supports basic auth has broken a lot of these clients.  When bashtc stopped working, I wrote my own very basic python twitter client using OAuth.  It only really worked for me since a lot of the OAuth stuff was hard-coded.  I've now generalized it to support the OAuth process and have released the source:
    http://gitorious.org/pytc/pytc
    I'm not a programmer so I'm afraid it's quite sloppy.  Unfortunately it also has some awkward dependencies, including one that you need to patch.  But hopefully it will be of use to someone, and if you improve my code it would be great to get some patches (I know I've got a lot to learn).
    You can also follow the twitter account for the project here:
    http://twitter.com/pythontc
    EDIT: Here's a screenshot of what it looks like with the public timeline.
    Last edited by lydgate (2010-10-10 23:40:43)

  • How to embed command line into application

    hello,
    Are there any API that function as a command shell?
    For example, if I have an code editor, and I want it be able to compile the code, how can I do? Just like JBuilder allow us to add a Tool by specified approriate directory path!

    there is an API that functions as a command shell.
    Runtime.exec()
    A better way to compile code is to call javac directly - do a search on google

  • Converting a command-line console application to a jsp or servlet

    What would be the steps to convert a console based application to a servlet based application?
    For example, I have a Scanner object that takes input from System.in and assigns it to a string.
    How might I turn the scanner input into a form on a jsp, or a servlet?What would be the steps to convert a console based application to a servlet based application?
    For example, I have a Scanner object that takes input from System.in and assigns it to a string.
    How might I turn the scanner input into a form on a jsp, or a servlet?

    Obviously you can't read from the scanner. Instead you have to read from request parameters.
    So you have to take a step back and define what values are being input into your application.
    At its most basic you could do it as a jsp page with a textfield/textarea which the user could type into instead of typing on the console input.
    For instance if your application asks the user to enter their name, and then reads the name from System.in, then you have on your jsp page a <input type="text"> and a submit button.
    In the servlet which gets run when you submit the button you get the user's name via request.getParameter().
    At that point you have your input String, and have removed System.in from the process.
    But you are not just limited to text input with an html form. You can use any of the controls available. So asking a user "What is your favorite colour?" Instead of having them type in the answer, you could have them choose it from a radio group or dropdown select box.
    Either way it still gets to the Servlet as a String via request.getParameter.
    Steps you might follow
    1 - identify the values being input into your program
    2 - Write your jsp - start with just textfields
    3 - Write your servlet handler to retrieve the values from the JSP.
    4 - Determine the appropriate control on an html form to replace each input
    5 - Modify the textfields to other controls (dropdown/radio button) as appropriate.
    Theoretically the rest of your program doesn't need to change once you have the value in a String.
    Your method of reading just changes from using Scanner and System.int to request.getParameter()
    Similarly your method of writing would change from using System.out to a response JSP page.
    hope this helps,
    evnafets

  • What is the easiest way to show a command line app in an appletviewer

    I'd like to convert a command line interface application to a small applet, for use in an appletviewer. What is the easiest way to implement this.

    I made something like what you are describing for a text adventure engine. It uses a big text area for output and a small text field for input.
    Here's the code
    public class myApplet extends java.applet.Applet
         implements Runnable
         TextArea output ;
         TextField input ;
    public void init()
              width = this.size().width ;
              height = this.size().height ;
         public void run()
              makeComponents() ;
              while( true ) // loop on + on + on
              try { Thread.sleep( 10 ) ; }
                        catch (InterruptedException e) {}
    public void makeComponents()
              input = new TextField() ;
              input.setSize( Math.min( 200, width - 5 ), 25 ) ;
              input.setLocation( 5, height - 30 ) ;
              add( input ) ;
              input.addActionListener( new ActionListener()
                   public void actionPerformed( ActionEvent e )
                        String temp = input.getText() ; // do something with this
              output = new TextArea( "", 0, 0, TextArea.SCROLLBARS_VERTICAL_ONLY) ;
              output.setSize( width - 10, height - 40 ) ;
              output.setLocation( 5, 5 ) ;
              add( output ) ;

  • Errors when packaging extension via Extension Manager Command Line

    Hi all,
    I am attempting to package an Adobe Fireworks extension via the CS6 Extension Manager command line tool:
    /Applications/Adobe\ Extension\ Manager\ CS6/Adobe\ Extension\ Manager\ CS6.app/Contents/MacOS/Adobe\ Extension\ Manager\ CS6 -suppress -package product="Fireworks CS6" mxi="name.mxi" mxp="name.mxp"
    I get the following error:
    error: +++ Assert in file /export/home/coretech/source/daily/extendscript/scriptobjects/build/xcode24/../../source/ bridgetalk/source/SoBridgeTalk.cpp, line 117
    +++ BridgeTalk::InitTerm::exit() has already been called.
    Debugger() was called!
    Does anyone have any suggestions on how to proceed?
    Best,
    Dmitriy

    1. There is no "product" attribute in package command. Please remove it.
    2. Why do you still package mxp? MXP has some limitations and is no longer supported in Extension Manager CC. You should package ZXP instead.
    3. Extension Manager CS6 can't sign extension during package. We have a new free product called Adobe Exchange Packager which can package and sign extensions. You can sign in http://www.adobeexchange.com/ and go to Resources page to download it. The current version in this page can't package extension based on existing mxi file. The latest version meets your requirement and will be available in a couple of days.

  • GUI Applications unable to use command line tools

    Hi All-
    I've searched, but I can't find a thread about this one, so...
    On OS 10.4.5:
    Whenever I use a GUI app that wants to use a command line tool (e.g. curl, df, java), the app fails giving an error message to the effect of "unable to find curl" or the like. It is as if the GUI cannot find my unix $PATH.
    Examples:
    -- Eclipse refuses to launch, because it appears to use "java xxxxxxx" to launch.
    -- Automator fails to run certain Safari actions because they use curl to navigate web pages.
    -- Carbon Copy Cloner fails to launch, because it can't find a tool (df, IIRC) to read drive/volume info
    Possibly relevant details:
    -- I can use the tool in question from the command line, so they are present, and in my $PATH, but the GUI can't find them.
    -- I recently moved from an old G4 to a relatively new G5, and had issues migrating files, so I eventually just copied my entire home directory from the old machine to the new, replacing the freshly created one on the new machine. I feel like that missed something that tells the GUI where your $PATH is, or some other link between GUI and command line.
    -- I created a new user, and that user does not experience the same troubles. This adds to my suspicion that it is account/PATH related.
    Any help anyone can give it greatly appreciated.
    -p
    PM G5 dual 2.0   Mac OS X (10.4.5)  

    Did you by any chance create an evironment.plist file? It is located in ~/.MacOSX/ If you don't know about it or don't know to look (.MacOSX is normally invisible), try this:
    In Finder.app, in the "Go" menu select "Go to Folder..." (shift-command-G), type ~/MacOSX in the text field and hit OK, the finder should then open a window or complain.
    If it opens a window and you find in it a file named environment.plist move that file to the desktop and try your applications. Do they work as advertized? Try again after logging in/out if things don't work. Do they work now?
    Whatever hapens, tell us more...

  • Is there a way to switch between workspaces in Spaces from the command line?  I want to write a script to set up certain applications in certain workspaces (without having to do it manually each time)...

    Is there a way to switch between workspaces in Spaces from the comnand line?  I use several workspaces from Spaces, each workspace having a certain number of fixed applications running.  Rather than set all this up each time I log on, I'd like to write a script from the command line (I use gawk) to automate this. Currently I have a gawk script that, given a directory, opens a few xterms whose working directory is the given directory, and opens "preview" applied to a certain file in that directory.  However, at present I have to manually move an xterm through each workspace and run my gawk script in each workspace (applied to each directory that I'm working on).
    There must be a better way...

    Addendum: Can this be done via:   open -a Spaces --args xxx  , where xxx is some set of arguments (or something like this)?

  • We are trying to implement a process so that any document that needs to be printed through our Java application will be printed as PDF using Adobe Reader. For which, We created and execute the below command line to call Adobe Reader and print the PDF on a

    We are trying to implement a process so that any document that needs to be printed through our Java application will be printed as PDF using Adobe Reader. For which, We created and execute the below command line to call Adobe Reader and print the PDF on a printer."C:\Program Files (x86)\Adobe\Reader 11.0\Reader\AcroRd32.exe" /T "\\<Application Server>\Report\<TEST.PDF>" "<Printer Name>". Current Situation: The above command line parameter when executed is working as expected in a User's Workspace. When executed in a command line on the Application Server is working as expected. But, the same is not working while executing it from Deployed environment.Software being used: 1. Adobe 11.0 enterprise version. 2. Webshpere Application Server 8.5.5.2. Please let us know if there is a way to enable trace logs in Adobe Reader to further diagnose this issue.

    This is the Acrobat.com forum.  Your question will have a much better chance being addressed in the Acrobat SDK forum.

  • Parsing in Weblogic/jsp doesn't work; application-mode (command-line) works

    Hello-
    Parsing my XML file in Weblogic/jsp doesn't work, whereas it works
    in application-mode... (albeit on two different machines)
    Here are the parameters:
    server1:
    weblogic 6.0
    win2k server
    jre1.3
    my personal machine:
    ***no weblogic***
    win2k server
    jre1.3
    When I run my code as an application (command-line style) on my machine,
    parsing in my xml file works fine, and I can do a root.toString() and it
    dumps out the entire xml file, as desired.
    However, running my code inside weblogic (on server1) in JSP, parsing in
    my file and doing a root.toString() results in the following: [dmui: null]
    (where dmui is my root)
    (even though i'm running it on two different machines, i'm positive its the
    same code (the servers share a mapped drive)...
    So, I think its probably because I'm using a different parser, as
    specified by weblogic? There are no exceptions being thrown. Here's my
    (abbreviated) code, which is called either command line style or in a JSP:
    // Imports
    import org.w3c.dom.*;
    import org.w3c.dom.Document;
    import javax.xml.parsers.*;
    import javax.xml.parsers.DocumentBuilderFactory;
    import javax.xml.parsers.DocumentBuilder;
    import org.xml.sax.SAXException;
    import org.xml.sax.SAXParseException;
    DocumentBuilderFactory docBuilderFactory =
    DocumentBuilderFactory.newInstance();
    DocumentBuilder docBuilder = docBuilderFactory.newDocumentBuilder();
    mDocument = docBuilder.parse (inFile);
    myRoot.toString()
    -END
    Doing a System.getProperty("javax.xml.parsers.DocumentBuilderFactory")
    results in:
    server1 (weblogic/jsp):
    "weblogic.apache.xerces.jaxp.DocumentBuilderFactoryImpl"
    my machine (application-mode):
    null
    Does anyone have any ideas about how to get this work? Do I try to set it
    up so that they both use the same parser? Do I change the Weblogic parser?
    If so, to what? And how?
    Am I even close?
    Any help would be appreciated..
    Thanks, Clint
    "[email protected]" <[email protected]> wrote in message
    news:[email protected]...
    No problem, glad you got it worked out :)
    ~Ryan U.
    Jennifer wrote in message <[email protected]>...
    I completely missed setting the property(:-o), foolish mistake. That wasit. Thanks.
    "j.upton" <[email protected]> wrote:
    Jennifer,
    Personally I would get rid of import com.sun.xml.parser.* and use xerces
    which comes with WLS 6.0 now, unless like I said earlier you have a need
    to
    use the sun parser :) Try something like this with your code --I've put
    things to watch for as comments in the code.
    import javax.xml.parsers.*;
    import org.xml.sax.SAXException;
    import org.w3c.dom.*;
    import java.io.FileInputStream;
    public class BasicDOM {
    public BasicDOM (String xmlFile) {
    try{
    FileInputStream inStream;
    Document document;
    /*You must specify a parser for jaxp. You can in a simple view
    think
    of this as being analogous to a driver used by JDBC or JNDI. If you are
    using this in the context of a servlet or JSP and have set an XML
    registry
    with the console this happens automatically. You can also invoke it in
    the
    context of an application on the command line using the -D switch. */
    System.setProperty("javax.xml.parsers.DocumentBuilderFactory",
    >>>
    "weblogic.apache.xerces.jaxp.DocumentBuilderFactoryImpl");
    // create a document factory
    DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance();
    // specify validating or non-validating parser
    dbf.setValidating(true);
    // obtain a factory
    DocumentBuilder db = dbf.newDocumentBuilder();
    // create a document from the factory
    inStream = new FileInputStream(xmlFile);
    document = db.parse(inStream);
    }//try
    catch (Exception e)
    System.out.println("Unexpected exception reading document!"
    +e);
    System.exit (0);
    }//catch
    }//BasicDom
    // Main Method
    public static void main (String[] args) {
    if (args.length < 1)
    System.exit(1); file://or you can be more verbose
    new BasicDOM(args[0]);
    }//class
    =============================================
    That will give you a basic DOM you can manipulate and parse it fromthere.
    BTW this code
    compiled and ran on WLS 6.0 under Windows 2000.
    Let me know if this helped or you still are having trouble.
    ~Ryan U.
    "Jennifer" <[email protected]> wrote in message
    news:[email protected]...
    Actually I included com.sun.xml.parser.* as one last febble attempt toget
    it working.
    And as for source code, I included the code. If I just put that oneline
    of code
    in, including the imports, it fails giving me an error listed above inthe
    subject
    line. Here is the code again:
    package examples.xml.http;
    import javax.xml.parsers.*;
    import org.xml.sax.SAXException;
    import org.xml.sax.SAXParseException;
    import org.w3c.dom.*;
    import java.util.*;
    import java.net.*;
    import org.xml.sax.*;
    import java.io.*;
    public class BasicDOM {
    static Document document;
    public BasicDOM (String xmlFile) {
    try {
    DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance();
    } catch (FactoryConfigurationError e){
    System.err.println(e.getException());
    e.printStackTrace();
    // Main Method
    public static void main (String[] args) {
    BasicDOM basicDOM = new BasicDOM (args[0]);

    Hi, Rob
    Does it work in WL9.2?
    It seems I do it exactly as the explained at http://edocs.bea.com/wls/docs81/programming/classloading.html - and it fails :o(.
    I try to run my app.ear with WL9.2 There are 2 components in it: webapp and mdb. The webapp/WEB-INF contains weblogic.xml:
    <weblogic-web-app>
    <container-descriptor>     
    <prefer-web-inf-classes>true</prefer-web-inf-classes>
    </container-descriptor>
    </weblogic-web-app>
    Mdb is expected to run in the same mode, i.e. to prefer the webapp/WEB-INF/*.jar over the parent Weblogic classloader. To do so I add the weblogic-application.xml to the app.ear!/META-INF:
    <weblogic-application>
    <classloader-structure>
    <module-ref>
    <!-- reminder: this webapp contains
    prefer-web-inf-classes -->
    <module-uri>webapp</module-uri>
    </module-ref>
    <classloader-structure>
    <module-ref>
    <module-uri>mdb.jar</module-uri>
    </module-ref>
    </classloader-structure>
    </classloader-structure>
    </weblogic-application>
    Now, when classloader-structure specified, both webabb and mdb prefer the weblogic root loader as if prefer-web-inf-classes not defined at all.

  • How to view an applications actions in command line?

    I have a series of highly repetitive tasks that require a tremendous number of button / menu clicks that I've been trying to automate. I have successfully automated the process with Automator using bash mouse clicks x,y coordinates. However, because this is method requires pixel coordinates it only works on one of my machines because the others do not have the same display size. As such this solution is lacking.
    What i'm looking for (and struggling to find) is means of viewing any running application's action as an equivalent text command. This is a built in functionality in most 3D modeling programs like Maya, Blender, etc. (which is where I first started using this method of automating tedious processes). Having the ability to view any button click or menu selection as a text based command, makes sorting out the proper syntax to create a proper script infinity easier.
    As an example, I want to be shown something like:
    tell application "Finder" to launch "Safari"      When clicking on the safari dock icon
    tell application "Safari" to open location "http://www.google.com/"     When typing in the URL and pressing enter
    tell application "System Events" to keystroke "apple support"    When typing the text string into google's search bar
    Though the above example is applescript, I'll take any language if it gets me heading int he right direction.  :-)
    Side note though Automator's 'watch me' do is great for simple tasks, I found it to be unreliable given the number of steps I have to deal with. 

    You might check with your apps' developers to see if they support AppleScript, Automator, or other scripting languages that might be used for this. Some programs have built-in macro and scripting options that can be set up in a built-in editor or run in a built-in command-line environment of sorts, while others supply libraries for external scripting with AppleScript and others.
    As for live tracing of a program's commands, most that you use will be coded in a low level language like C, C++, Java, or Objective-C, which are compiled and run in binary machine code as opposed to an interpreted language (one that does not need compiling to run), as is the case with most scripting languages (shell scripts, AppleScript, Matlab, etc.).
    For the most part, the only options you have for "tracing" a program's functions are to monitor output that it might log to the console. You can see this by opening the console, but the output here is diagnostic in nature and is programmatically limited to what the programmers have intended be output (ie, things like warnings and errors, as opposed to every action the program is taking). You can also use the Terminal to directly launch a program's executable so it is hosted in the Terminal shell. This will give you direct access to all of the program's output, as opposed to that only intended for logging in the Console, but it is still not the same as a full output of the commands and routines the program is performing.
    Some of Apple's developer tools can allow you to better monitor a program's functions, but these are intended for developers, and have some requirements, and will not allow you to use any results for productivity automation.

  • Advice on constructing a test engine and formatting a spreadsheet test file to perform command line interface testing on a product through telnet or serial interface

    Advice on constructing a test engine and formatting a spreadsheet test file to perform command line interface testing on a range of products through telnet or serial interface and output pass/fail results.

    If I understand correctly, you want to do the following:
    1. Create one or more tab-delimited files that specify a series of query strings (that LabVIEW will send to your products) and expected reply strings (that LabVIEW will look for in response to each query)
    2. Run your LabVIEW program (the test engine) and have it execute one or more test scripts from file using either TCP/IP or serial communication to your units under test
    3. Track how many of the queries are met with the expected response, and output an indication of whether each step passed or failed
    If this is close to correct, then I've attached a sample test file and LabVIEW VI as an example; I chose the TCP/telnet method because it allowed me to use the ni.com Web site to simulate my tes
    t hardware. If you happen to own the LabVIEW Internet Toolkit, there's a VI called "Telnet Play Script" in the Telnet palette that does something fairly similar using TCP. The same general model would also work for Serial communications.
    Hope it helps,
    John Lum
    Attachments:
    test_engine.zip ‏24 KB

  • Using process manager to get command line of a running application

    hello,
    i'm currently using the process manager framework to get a list of current running processes on the machine. i would like to get the command line to display to the user. i can see how to get the path to the executable file. i.e. /Applications/AppRunning however i'd like to get the full command line and im either missing it from the documentation or not seeing the links to get that information. so i want to get /Applications/AppRunning -c someoption -f another option. can anyone recommend a function to assist me or if im using the wrong API to get the information i am looking for can someone recommend the correct API?
    thank you very much.

    musikit wrote:
    thank you very much. you have been more then informative about this. i'll have to check out the kernel queues and events api you mentioned. i've never really digged this far into a unix style OS before. it's pretty interesting. it seems like EVFILT_PROC is what i want to get process starts/stops.
    I've never done this either, so I'm quite sure I'm missing some big things here. Some other things that might be handy are dtrace and ptrace. I strongly suspect that there is some really easy way to do it that I don't know about. You might try searching on the Apple developer mailing lists.
    at the end of the day though i still need to be able to retrieve the command line of a running executable. 'ps' can do it so i'm assuming there is a programatic way of doing it. is the mac 'ps' command source code online anywhere that i can see what it's doing?
    I don't know about ps. There are a number of Mac applications that do things similar to what you propose. Marcopolo is open-source and can detect when applications are launched.
    i have looked at the linux procps package however it relies on the procfs which mac does not have.
    Amit Singh wrote a MacFUSE-based procfs for the Mac. You can look at the source code to that, but, to quote Amit "the MacFUSE version of procfs makes heavy use of the Mach programming interfaces". Good luck with that. Still, there might be some helpful information in that link.

  • Command Line Parameters for Run Application.vi in the LVWUtil

    I am trying to use the "Run Application.vi" located in the LVWUtil.llb.  I am sending a command line similiar to this:
    "C:\WINXP\system32\msiexec.exe" /i "C:\qc data\ZVMS Program Updates\Application Installer\install.msi"
    this command line works from the Start>Run dialog but the Run Application.vi only sees the beginning of the line "C:\WINXP\system32\msiexec.exe" so it opens the windows installler but does not go to the install.msi file and run it.  Does anyone know the correct command line formats for the Run Application.vi to run the entire command line?
    Thanks,
    BethV

    Hello BethV,
    I downloaded the LVWUtil32.zip file from the Windows API Function Utilities (32-bit) for LabVIEW example program.  In that zip file, is a library entitled Winevent.lib, which includes the Run Application.vi.  When you used this VI, I believe the string you passed in as a input had too many quotation marks.  Namely, you do not need quotes around the msiexec.exe call.  I passed the following string into the Run Application.vi and got the expected results:
    C:\WINDOWS\system32\msiexec.exe /i "C:\mymsi.msi"
    Please let me know if it helps.
    Message Edited by Wendy L on 10-21-2005 02:34 PM
    Wendy L
    LabWindows/CVI Developer Newsletter - ni.com/cvinews
    Attachments:
    RunApplication.GIF ‏2 KB

  • How to restore or backup Apex application from Command line ? URGENT

    We have Oracle apex 4.1 installed in Oracle 11g R2 database (windows 64-bit) 2008 R2
    For some reason our database dictionary objects are corrupted.
    We wanted to backup our Apex applications in some workspaces ASAP.
    We are not able to access apex from http://localhost:7777/pls/apex/htmldb_login
    We have an underlying database schema export (expdp).
    1) Is there a way to export or backup the apex application without logging into the apex URL ? if yes how ?
    2) Does Oracle has any of its own native tool to backup and restore from command line ?
    Thanks in advance

    My (MS Windows) experience, if I may; perhaps you'll find something useful.
    You'll find the README.TXT file in /apex/utilities directory. Read it.
    In order to use APEXExport, you need JDK version 1.5 or higher. Check your version by typing (and viewing the result):
    C:\>java –version
    java version "1.6.0_06"
    Java(TM) SE Runtime Environment (build 1.6.0_06-b02)
    Java HotSpot(TM) Client VM (build 10.0-b22, mixed mode, sharing)Its directory should be part of the PATH environment variable: on my computer, directory name isC:\Program Files\Java\jre1.6.0_06\binFurthermore, Oracle JDBC class libraries must be part of the CLASSPATH environment variable. Check whether it exists (in Control Panel - System - Advanced - Environment Variables). For my 10gXE, it is here:C:\oraclexe\app\oracle\product\10.2.0\server\jdbc\lib\ojdbc14.jarI couldn't make it work; didn't know that ".\" directory must be entered into CLASSPATH as well (found that information in Arie Geller's book). Therefore, my final CLASSPATH version is:.\;C:\oraclexe\app\oracle\product\10.2.0\server\jdbc\lib\ojdbc14.jarOK, setup is done. Now, go to your /apex/utilities directory and, from the command prompt, run (mind the upper case!)java oracle.apex.APEXExportwhich will show a short help.
    I chose to export the whole workspace. In order to do that, I need the workspace ID (got it from Apex's SQL Workshop; that might be a problem as you can't get there, can you? I can't tell how to find that information apart from SQL Workshop, but I'm pretty sure someone, who is much more experienced than me, will know it). OK, here's how you find it:select v('WORKSPACE_ID') from dual;Finally, here's the final step - export:C:\apex\utilities>java oracle.apex.APEXExport -db localhost:1521:xe -user scott -password tiger -workspaceid 1038408092496568The result are fxxx.sql files (where "xxx" represents application number).
    I hope you'll manage to export your applications; basically, nothing special here (except that ".\" directory in the CLASSPATH variable).
    Best of luck!

Maybe you are looking for

  • Faulty line for over a month now but BT says it is...

    Has anyone got any suggestions, please?  I reported a faulty line on 22nd April - it had an increasing amount noise on it (which it has had for ages but had become unbearable) including clicking, and my broadband kept dropping.  I had done all the us

  • HT4528 my iphone has damge and i need to fix it

    my iphone 4 has a glitch hard to see the screen or messages. Please help me find a way to have it fixed asap

  • How to save photos in photo stream

    After transferring photos from my iPhone to my iPad how can I save the pictures in photo stream or transfer to my photo album or camera roll.tks

  • Error in default workflow Project Supplier Invoice Charge Account

    Hi, We applied the patch for E-Business Suite extended support requirements in our clone server and we advise users to test the modules. On the AP-PA module, we received an error saying "The default workflow for the Oracle Payables account function P

  • Flex 2 15 - Need to reinstall Windows 8.1

    Hi! I'm new here so be patients please! I have recently bought a Lenovo Flex 2-15 and it came with pre-installed Windows 8.1. My supplier was Newegg.com. Everything was great and beautiful, except I wasn't able to close the optical drive door. After