Cannot see the output file in my first project

Hi,
I follow the instructions of Exercise in Chapter 4 of CAP-0501 to make the project. I wonder why I cannot see the output file in 'C:\CAPExercises\0501\exercises\Active_Project\Output'.
There are two things I would like you know.
1. I do not have the file 'prjFileXferInput.xml', but find and copy a xml file. Is this a problem? Does CAPS have any special requirement on schema for the input file?
2. Is '\' and '/' a problem for Java CAPS? I notice the book using 'C:/CAPExercises/0501/exercises/Active_Project/Output�, while it is 'C:\CAPExercises\0501\exercises\Active_Project\Output' on windows. I am working on a standalone Windows 2000 computer.
By the way, can anyone give me a confirmation that '/' and '\' is not a problem for Java CAPS, as the server or application take care of it? Is it true?
Thanks,

I am answering my own question. The project works.

Similar Messages

  • How do I recover the original jpg photo files from my computer? They are embedded in the iPhoto Library and I cannot see the actual file.

    I am trying to locate the original jpg or photo files that I uploaded from my camera. I know that the photos are there, because they show up in my iPhoto Library. Where can I go to find the original file ex: DSCN1242.jpg or OLM4564.jpg ?

    Select the photo in iPhoto and use the command "File > Export" and set the "Kind" in the Export panel to "Original". That will write a copy of the original to a folder you can access in the Finder.
    The command "File > Reveal in Finder" will show you the original inside the iPhoto Library, but you must not access the files this way. If you access them from other apps using the Finder, you will corrupt your library.
    See Terence Devlin's user Tips:
    iPhoto and File Management
    How to Access Files in iPhoto
    To what purpose do you need to find the files? Is there a problem and iPhoto giving an error message about missing originals?

  • HT1766 How do I restore an iphone 4 from an older back up from my computer?  I cannot see the restore file that I need but I know I did not delete it.

    I have an iphone 4 and before I installed the new software I transferred all my pictures to my computer then deleted the pictures from my iphone to create space for the upgrade to iOS 7.  I saw that I had a back up made in jan 2013.  I then sinatlled the software and something went wrong because I had to connect to my computer to complete the process.  I tyrie to back up from my old back up but I forgot the password.  I did not have time to look for it so I started my phone as a new phone. I then at a later time attempted to restore my phone once I found the passord but my old restore file is not there anymore.  Is there anyway to find this file on my computer and use it to resore my phone?

    Connect your iPhone to Your computer and Sync it with iTunes. Then you can Restore your data.

  • In Snow Leopard, Autofill cannot see the Access file.

    For years this MacBookPro running older OS X versions had no problem with autofill accessing the Access Keychain or the Address Book. I relied on it andit was always there.
    But ever since I installed and updated Snow Leopard, autofill fails nearly every time. For example, before Snow my login to gmail was automated. With Snow autofill automates my login name but not the password. I didn't change anything. Autofill changed.
    And it seems to be random failure. It ignores "Leave me logged in" check boxes. It will remember login and password to some ordinary commercial sites and not others. For example, autofill refused today to recognize my account at rockauto.com. I set up a second account and it refuses to see that one also. Both are checked "Keep me logged in."
    Has Apple published a fix or workaround for this bug?

    If you're referring to desktop icons, right click on the desktop > Show view options > check "show item information".

  • Cannot read the output from windows command.

    Hello
    I have the following classes
    package cmd;
    import java.io.IOException;
    public class CMD {
        public CMD(){
            ProcessBuilder pb = new ProcessBuilder()
            .command("cmd.exe","/c","del *.*")
            .redirectErrorStream(false);
            Process p;
            try {
                p = pb.start();
                StreamGobbler errorGobbler = new StreamGobbler(p.getErrorStream(), "ERROR");
                // any output?
                StreamGobbler outputGobbler = new StreamGobbler(p.getInputStream(), "OUTPUT");
                // start gobblers
                outputGobbler.start();
                errorGobbler.start();
            } catch (IOException e) {
                // TODO Auto-generated catch block
            System.out.println("eee "+e.getMessage());;
        public static void main(String[] args) {
            System.out.println("x");
            new CMD();
            System.out.println("x");
    and
    package cmd;
    import java.io.BufferedReader;
    import java.io.IOException;
    import java.io.InputStream;
    import java.io.InputStreamReader;
    public class StreamGobbler extends Thread {
        InputStream is;
        String type;
        StreamGobbler(InputStream is, String type) {
            this.is = is;
            this.type = type;
        @Override
        public void run() {
            try {
                InputStreamReader isr = new InputStreamReader(is);
                BufferedReader br = new BufferedReader(isr);
                String line = null;
                while ((line = br.readLine()) != null)
                    System.out.println(type + "> " + line);
            catch (IOException ioe) {
                ioe.printStackTrace();
    Please note that I cannot seee the output from wndows command : del *.* and the java class execution does not finished.
    I I will replace the above command with the dir command then the output of the command is visible.
    Would you give me a hint about how to modify the above clases in order to parse the output of the del *.* ?
    Please note that the above example is important because I am developping a tool and it is mandatory for that tool to parse the output from a windows batch command.
    Best regards,

    Please note that I cannot seee the output from wndows command : del *.* and the java class execution does not finished.
    I I will replace the above command with the dir command then the output of the command is visible.
    Would you give me a hint about how to modify the above clases in order to parse the output of the del *.* ?
    No - but I will give you a hint about ProcessBuilder and how to develop software properly.
    Hint #1: Don't try to automate something that you don't know, or understand, how to do manually.
    a. Do you know how to execute 'del *.*' manually in a command window?
    b. Did you try that manually to see what happens?
    My guess is 'no'. If you had you would know that the response to a 'del *.*' command is going to be this:
    Are you sure (Y/N)?
    And your 'java class execution' doesn't finish because the 'del' command is waiting for you to answer that question.
    Hint #2: Don't try to use ProcessBuilder for an application that requires console input unless you first know how to provide that console input via your Java code.
    Your code will wait forever since it does NOT answer that question.
    Search the net and The Java Tutorials and  you can find examples of executing command line utilities. Then try those examples first and make sure that:
    1. They work for you
    2. You understand HOW they work
    Then you can modify those examples to do what you want to do.

  • Where to see the output of batch file run in java

    I use RunTime.getRunTime.exec() to run a batch file, it seems going fine. But I can not see the output of the batch file. For instance, the batch file is to print sth on the screen, but it wont display under java.
    Why and how?
    Thanks

    You get the Process and from that yoo use getInputStream().
    You need to read the stream in a seperate thread since if it fills the buffer it blocks the thread (which would be your main thread.)

  • Cannot see the actual photo file in Finder once loaded onto iPhoto08??

    GOod evening to all knowledgeable people,
    Probably a stupid question..I read previous posts in quest of a similar lost querry but couldn't find, therefore here I am.
    Now that I upgraded to iLife08, when I transfer my photos onto iPhoto the only way that allows me to see the actual file is if I right click on an image in the iPhoto Library and it pops up a new Finder window.
    But when I go manually and look around in the Photos menu it doesn't actually display the content of the iPhoto Library. Surely this is wrong as in the previous version I could just go and see each files without passing going through iPhoto?
    Anyone with an answer?
    Thanks
    Greg.

    I read the messages on Hurrocain's post and I think it answers my question...:)
    So with the new iPhoto08 we cannot access photos through the finder? and have to export the desired files onto the desktop for instead? not that great in terms of flexibility...:(

  • Hi, i've just bought my first macbook pro, i just installed office mac and when i open the page i cannot see the minimise maximise and close buttons as it's hidden behind the apple menu bar, also when it's at full screen, those buttons do not appear

    hi, i've just bought my first macbook pro, i just installed office mac and when i open the page i cannot see the minimise maximise and close buttons as it's hidden behind the apple menu bar, also when it's at full screen, those buttons do not appear

    Try to edit the size of the page using the sides of the page, or if you are desperate, force quit using command-Q. In full screen put your cursor on the top of the page, and the menu bar will appear. If it doesn't keep "pushing" it up until it does. Hope this helps!

  • I recently purchased a movie on i tunes which is not showing in my purchased file. I downloaded it on my ipad but cannot see the file on I tunes. Ipad lost so trying to retrieve a movie file. Any ideas please?

    I recently purchased a movie on i tunes which is not showing in my purchased file. I downloaded it on my ipad but cannot see the file on I tunes. Ipad lost so trying to retrieve a movie file. Any ideas please?

    The movie will only be where you put it.
    However,in some countries you can redownload some movies:
    Downloading past purchases from the App Store, iBookstore, and iTunes Store
    Learn more about which content types are supported for iTunes in the Cloud by country, as well as where iTunes Match is available.

  • Starting Firefox 8, I cannot see the extensions.rdf file. Does it was replaced/renamed/deprecated ?

    After Firefox 8, I cannot see the extensios.rdf file as before. Basically, here I used to get the firefox key e.g. {ec8030f7-c20a-464f-9b0e-13a3a9e97384} and then get the FF version via em:minVersion/em:maxVersion.

    '''extensions.sqlite''' replaced the '''''extensions.rdf''''' file in Firefox 4.0 and later versions. It is not a simple "text" file as the RDF file format was.
    Sorry, I don't understand what you mean by "get the firefox key".
    If you are looking to edit the maxVersion for an extension, do the edit in the '''install.rdf''' file for each particular extension.

  • Mac Word 2008 - hyperlink message "Word cannot open the specified file"

    I'm using WordMac 2008 version 12.2.5 and after following detailed instructions on how to hyperlink chapters in a Table of Contents to their respective chapters in a book, I can only get the message "Word cannot open the specified file".
    Any ideas what could be wrong?
    My OSX is 10.5.1.
    The instructions I followed are pasted below and are copied from the Smashwords Style Guide: http://www.smashwords.com/books/view/52
    START OF PASTE FROM SMASHWORDS STYLE GUIDE:
    How to create a linked Table of Contents. Consider this feature in “beta.” My
    thanks to Smashwords author Cheryl Anne Gardner for sharing these tips below,
    which I have augmented based on my own experience adding a ToC to the Style
    Guide (woo hoo!).
    By adding a linked table of contents, you can help readers navigate your
    document. This is especially useful for non-fiction. Most fiction doesn’t
    need it. If you follow the instructions below, the ToC should work in your
    EPUB, MOBI and PDF files, but it will not work in our other formats.
    First, create your table of contents where you want it by typing it out. Make
    sure the text is normalized just like the rest of your Smashwords’ Word
    document. Example:
    Contents
    Chapter 1
    Chapter 2
    Chapter 3
    Chapter 4
    Etc.
    Next, we are going to create the BookMarks. In Word 2000, 2003 and 2007, the
    Booksmark function is under the Insert tab. Go through your document, and at
    each Chapter Start or Indexed item, you will highlight it and then select
    Insert: bookmark. Name your bookmark corresponding to the Chapter/Indexed
    item and then click add. It’s very important to use the first word of your
    heading you’re linking to, because later on, when you add the hyperlinks,
    Word displays the bookmark shortcuts in alphabetical order. With many
    bookmarks, I found many of my bookmarks weren’t labeled properly, so it was
    tough to link to the correct bookmark. If you want to link to a chapter named
    How to Publish Ebooks, I’d recommend naming your bookmark
    “HowToPublishEbooks” to make it easy to locate. If you instead name it,
    “publishebooks,” you’ll frazzle your brain and make mistakes.
    Repeat the process above for every Chapter Start as well as for other matter
    in the book like index, bibliography, epilogue, prologue, etc. I didn’t link
    to every section in the Style Guide, because otherwise the ToC would have
    been three pages long. This is your call.
    Next, return to your table of contents and highlight the word “Contents.”
    Click insert, bookmark, and label this last bookmark “Contents”. Formatting
    note: Bookmarks cannot have spaces or odd characters. If instead of
    “Contents” you called the label in the document Table of Contents, as I did,
    then when you insert the bookmark, name the bookmark “TableofContents,” one
    word, or “toc.”
    Next, add the hyperlinks to your Chapter Starts. In your table of contents,
    if Chapter 1 is called Chapter 1, then highlight Chapter 1 and then click
    insert Hyperlink. As you can see in the Style Guide, I tried to use more
    descriptive labels. In Word’s Hyperlink menu on the left hand side, select
    “Place in this document.” You will now see your bookmarks listed in the main
    window. Select Chapter1 bookmark (or whatever you labeled it) and then click
    ok. Do this procedure for every chapter and piece of matter in the table of
    contents.
    Final step. Now you can link back to the Table of contents. Move through your
    document to each indexed item or Chapter start and highlight it. Then click
    insert, hyperlink, and then select “Place in this document.” When the
    bookmarks are showing in the main window, select the bookmark labeled
    “Contents,” assuming that’s what you named your Table of Contents. Do this
    for each and every chapter and or indexed item.
    After you are done, all your links will be underlined. You will need to test
    and make sure you linked everything properly. In most Word versions, you just
    click on the hyperlink to test. In Word 2007, you may need to Ctrl-Click each
    hyperlink and make sure it takes you where you need to go in the document.
    Advice: Word has an automatic ToC generation feature under the reference tab.
    Do not use this. It uses automated headings and formatting to generate the
    ToC and this will un-normalize your text and cause font conversion issues in
    your Smashwords files.
    END OF PASTE FROM SMASHWORDS STYLE GUIDE.
    I did all that as described but I still get the message "Word cannot open the specified file".
    Could you help please?

    This question would be better addressed to...
    http://www.microsoft.com/mac/help.mspx
    I think the operative phrase from that article is...
    *Consider this feature in “beta.”*
    -mj

  • Where to see the output of my Application Engine Program ?

    Folks,
    Hello. I am creating my first AE program in Application Designer and test it in the 2-tier mode. I open the AE program in Appication Designer and click Edit ->Run Program. Then open the log file to see its execution and know the AE program is running out. But I don't know where to see the output of the AE program.
    The AE program is only executing a SQL "select" statement. Its output is the ResultSet of the SQL.
    Do any folks know where to see the output of the AE program ?
    Thanks in advanced.

    The AE program is only executing a SQL "select" statement. Its output is the ResultSet of the SQL.
    Do any folks know where to see the output of the AE program ?The output of the select didn't go anywhere. You have to actually do something with the values selected. App Engine selects them and puts them in memory (if you tell it to through %Select), but where those values go depends on you. If you have a DoSelect, then your next action may be an SQL insert/update/delete or even another %Select. If it is another %Select, then I would expect your next action to be Call Section or PeopleCode.
    If you just want to select data and print it to the app engine log file, then I would setup a step with a DoSelect/%Select and then a PeopleCode action. In your PeopleCode action, use MessageBox(0, "", 0, 0, "The value in field MYFIELD is " MYREC_AET.MYFIELD);
    I wrote a blog post a few years ago with additional tips and tricks for AppEngine output: http://jjmpsj.blogspot.com/2008/05/appengine-output-tricks-reporting.html.

  • I cannot get the Output Module to work. I was able to get the button to show up, but when I click on it, nothing happens. i need to export a PDF asap

    I cannot get the Output Module to work. I was able to get the button to show up, but when I click on it, nothing happens. i need to export a PDF asap. I am trying to export 33 PSD files in BRIDGE to a PDF like I used to do on my other computer with bridge.

    Let's start with the general things.
    When you have a problem with one particular site, a good "first thing to try" is clearing your Firefox cache and deleting your saved cookies for the site.
    (1) Bypass Firefox's Cache
    Use Ctrl+Shift+r to reload the page fresh from the server.
    Alternately, you also can clear Firefox's cache completely using:
    orange Firefox button (or Tools menu) > Options > Advanced
    On the Network mini-tab > Cached Web Content : "Clear Now"
    If you have a large hard drive, this might take a few minutes.
    (2) Remove the site's cookies (save any pending work first). While viewing a page on the site, try either:
    * right-click and choose View Page Info > Security > "View Cookies"
    * Alt+t (open the classic Tools menu) > Page Info > Security > "View Cookies"
    In the dialog that opens, you can remove the site's cookies individually.
    Then try reloading the page. Does that help?

  • Where can I find the path to a document in the Output File Repository.

    Hello All
    I'm somewhat confused......
    Previously, in XI R2 it was possible to see the physical Output File Repository path for an instance. For example:
    frs://Output/a_123/012/34/5678/abcd.wid
    This information was available through the CMC by selecting the instance and viewing its Properties.
    Can anyone tell me where this information can be viewed in XI3.1. I have checked through the CMC and cannot find it anywhere. When I look at the Instance Details of a particular instance, I do not see this information.
    Thanks in advance.
    J

    My environment is XI3.1
    Thank you to the previous poster but this only tells me the path the Output Repository (which I already know).
    Sorry, I think maybe my question was not very clear.
    I want to know how I can identify the physical path to a specific instance in the Output File Repository. For example:
    frs://Output/a_123/456/7890/abcde.wid
    In XI R2 it was easy to obtain this information by taking the following steps:
    1. CMC
    2. Objects
    3. Search for and select the required object that has the required instance
    4. Select the History tab to see the list of instances
    5. Check the box against the required instance
    6. Click on the Status of the instance to view the Instance Details.
    Now, in XI3.1 (either InfoView, CMC or Instance Manager) the Instance details does NOT show the physical path to the .WID/.XLS/.PDF or whatever the format of the instance be.
    Please can someone tell me where I can find this information.
    Thank you.

  • Error message: Cannot load the rpt file

    Can anyone please help.
    I created a Crystal Report which I deployed into Business One. Tested this report on about 13 machines running Business One and all running well except one machine where it comes up with the following error messages:
    1: Cannot load the rpt file
    2: Object reference not set to an instance of an object
    3: Invalid report file path
    I have tried logging into Business One on that machine as a different user and encountered the same issue. Then logged onto another machine as the user who uses the machine with the error message and her profile works well on another machine.
    This is leaving me with concluding this problem could be down to the machine but cannot figure out how to fix it.
    Does anyone have any ideas to solving this?
    Thanks
    Tony

    Hi Tony,
    On the troubled computer, check in Control Panel whether Crystal Report Runtime is installed. If not, un-install client app and re-install from B1_Shr client's folder. The first thing that it will do is to instal Crystal Report Runtime.
    Source: when I did an upgrade on a client recently this happened. After troubleshooting everything I found that this issue is a hit-and-miss as some PCs had it some don't. I started comparing between working and non-working PC and found this is the only difference I could found.

Maybe you are looking for

  • For iPhone Case Lovers and their concern of Magnet Closers!!

    I recently learned that some have had issues with their iPhone when used with a cases that includes magnets for closing. Sorry mwhitted for your woes. While looking for a nice case for myself I became concerned of this, and decide to contact Sena abo

  • .m3u links on emusic will not open or download when clicked

    Trying to listen to the samples on emusic.com and nothing happens when I click a link. It shows the address of the .m3u file when I hover over it, and I can save that .m3u and listen to it on my computer, but nothing happens when I click it. I tried

  • What's the role of 'throws' clause in method overriding

    I'm getting error when subclass "Parser" overrides method 'getInt()' which throws Exception but super class version don't. It is compiling without error when vice versa is true i.e., super class version throws exception but sub class version don't th

  • Field label from data element (language dependent)

    I have 2 development systems and am struggling to get different language from a standard sap data element. On Dev system 1 the program is:    parameters:  l_file1  like filename-fileintern. In the selection texts of the program I select "Dictionary r

  • 2 lines text for JButton

    Hi all, Easy question...is there a way to set 2 lines of text to JButton? Thanks!