.java files appear double spaced in Jdeveloper IDE.

After checking for updates and not finding what I was looking for, all .java files appear double spaced in the Code Editor. I can't find project property that seems to control this. The files appear fine when opened with other editors.

How does the file show up in notepad or vi? How does it show up in firefox?
You might want to evaluate the file with an ASCII reader to see if there are any extra line breaks in the code.
Also are some of the developers on linux/unix and some on windows?

Similar Messages

  • How can i run java file by double click like Visual basic

    i have to run java file by giving a command on DOS promtp.But in Visual basic i easily make a .exe file to run my program. Does java provide this thing?
    please help me.

    If you have intaled a JRE in your computer, at leasrt in windows, the .jar files are asociated with the VM, so a double click on them will execute the, thats how things work on my computer, with jdk 1.4 installed.
    Abraham.

  • Java files open in SQL Developer instead of JDeveloper

    JDEV 10.1.3
    Windows XP
    When I double click a java file, it opens in SQL Developer instead of JDeveloper.
    When I right click a java file, and select 'Open With'->jdeveloper, the java file always opens in SQL Developer instead of JDeveloper.
    I've tried browsing and choosing all the different executables: jdevw.exe, jdev.exe, jdeveloper.exe. No luck on any of them.
    Any help here? Thanks!

    Thanks, but that didn't work. I noticed that the "open" action for java file extension is, in fact, set to use the jdeveloper.exe (I also tried jdev.exe and jdevW.exe).
    Note: even if I run the jdeveloper.exe on the command line, with a java file as the argument, the java file still opens in SQL Developer, if it is running. (Otherwise it uses JDeveloper)
    It's as if JDeveloper and SQL Developer are somehow coupled in the opening of files.

  • Connecting java file to jsp

    Hi i'm working on a jsp file and i want my jsp file to access the methods in a java file of mine.I have an idea its got something to do with beans. But i have no knowledge about beans. does anyone know how i can acheive it.

    The following ( from the java tutorial with samples is downloadable) gave me the clarity in understanding how .jsp interact with classes (modified beans)
    This tutorial is available at
    http://java.sun.com
    and follow thelinks for the tutorial.
    Here Goes.....
    Home | Download | PDF | API | FAQ | Search | Feedback | History
    JavaBeans Components
    JavaBeans components are Java classes that can be easily reused and composed together into applications. Any Java class that follows certain design conventions is a JavaBeans component.
    JavaServer Pages technology directly supports using JavaBeans components with standard JSP language elements. You can easily create and initialize beans and get and set the values of their properties.
    JavaBeans Component Design Conventions
    JavaBeans component design conventions govern the properties of the class and govern the public methods that give access to the properties.
    A JavaBeans component property can be
    Read/write, read-only, or write-only
    Simple, which means it contains a single value, or indexed, which means it represents an array of values
    A property does not have to be implemented by an instance variable. It must simply be accessible using public methods that conform to the following conventions:
    For each readable property, the bean must have a method of the form
    PropertyClass getProperty() { ... }
    For each writable property, the bean must have a method of the form
    setProperty(PropertyClass pc) { ... }
    In addition to the property methods, a JavaBeans component must define a constructor that takes no parameters.
    The Duke's Bookstore application JSP pages bookstore.jsp, bookdetails.jsp, catalog.jsp, and showcart.jsp use the database.BookDB and database.BookDetails JavaBeans components. BookDB provides a JavaBeans component front end to the access object database.BookDBAO. The JSP pages showcart.jsp and cashier.jsp access the bean cart.ShoppingCart, which represents a user's shopping cart.
    The BookDB bean has two writable properties, bookId and database, and three readable properties: bookDetails, numberOfBooks, and books. These latter properties do not correspond to any instance variables but rather are a function of the bookId and database properties.
    package database;
    public class BookDB {
    private String bookId = "0";
    private BookDBAO database = null;
    public BookDB () {
    public void setBookId(String bookId) {
    this.bookId = bookId;
    public void setDatabase(BookDBAO database) {
    this.database = database;
    public BookDetails getBookDetails() throws
    BookNotFoundException {
    return (BookDetails)database.getBookDetails(bookId);
    public List getBooks() throws BooksNotFoundException {
    return database.getBooks();
    public void buyBooks(ShoppingCart cart)
    throws OrderException {
    database.buyBooks(cart);
    public int getNumberOfBooks() throws BooksNotFoundException {
    return database.getNumberOfBooks();
    Creating and Using a JavaBeans Component
    To declare that your JSP page will use a JavaBeans component, you use a jsp:useBean element. There are two forms:
    <jsp:useBean id="beanName"
    class="fully_qualified_classname" scope="scope"/>
    and
    <jsp:useBean id="beanName"
    class="fully_qualified_classname" scope="scope">
    <jsp:setProperty .../>
    </jsp:useBean>
    The second form is used when you want to include jsp:setProperty statements, described in the next section, for initializing bean properties.
    The jsp:useBean element declares that the page will use a bean that is stored within and is accessible from the specified scope, which can be application, session, request, or page. If no such bean exists, the statement creates the bean and stores it as an attribute of the scope object (see Using Scope Objects). The value of the id attribute determines the name of the bean in the scope and the identifier used to reference the bean in EL expressions, other JSP elements, and scripting expressions (see Chapter 16). The value supplied for the class attribute must be a fully qualified class name. Note that beans cannot be in the unnamed package. Thus the format of the value must be package_name.class_name.
    The following element creates an instance of mypkg.myLocales if none exists, stores it as an attribute of the application scope, and makes the bean available throughout the application by the identifier locales:
    <jsp:useBean id="locales" scope="application"
    class="mypkg.MyLocales"/>
    Setting JavaBeans Component Properties
    The standard way to set JavaBeans component properties in a JSP page is by using the jsp:setProperty element. The syntax of the jsp:setProperty element depends on the source of the property value. Table 12-3 summarizes the various ways to set a property of a JavaBeans component using the jsp:setProperty element.
    Table 12-3 Valid Bean Property Assignments from String Values Value Source Element Syntax
    String constant <jsp:setProperty name="beanName"
    property="propName" value="string constant"/>
    Request parameter <jsp:setProperty name="beanName"
    property="propName" param="paramName"/>
    Request parameter name that matches bean property <jsp:setProperty name="beanName"
    property="propName"/>
    <jsp:setProperty name="beanName"
    property="*"/>
    Expression <jsp:setProperty name="beanName"
    property="propName" value="expression"/>
    <jsp:setProperty name="beanName"
    property="propName" >
    <jsp:attribute name="value">
    expression
    </jsp:attribute>
    </jsp:setProperty>
    1. beanName must be the same as that specified for the id attribute in a useBean element.
    2. There must be a setPropName method in the JavaBeans component.
    3. paramName must be a request parameter name.
    A property set from a constant string or request parameter must have one of the types listed in Table 12-4. Because constants and request parameters are strings, the web container automatically converts the value to the property's type; the conversion applied is shown in the table.
    String values can be used to assign values to a property that has a PropertyEditor class. When that is the case, the setAsText(String) method is used. A conversion failure arises if the method throws an IllegalArgumentException.
    The value assigned to an indexed property must be an array, and the rules just described apply to the elements.
    Table 12-4 Valid Property Value Assignments from String Values Property Type Conversion on String Value
    Bean Property Uses setAsText(string-literal)
    boolean or Boolean As indicated in java.lang.Boolean.valueOf(String)
    byte or Byte As indicated in java.lang.Byte.valueOf(String)
    char or Character As indicated in java.lang.String.charAt(0)
    double or Double As indicated in java.lang.Double.valueOf(String)
    int or Integer As indicated in java.lang.Integer.valueOf(String)
    float or Float As indicated in java.lang.Float.valueOf(String)
    long or Long As indicated in java.lang.Long.valueOf(String)
    short or Short As indicated in java.lang.Short.valueOf(String)
    Object new String(string-literal)
    You use an expression to set the value of a property whose type is a compound Java programming language type. The type returned from an expression must match or be castable to the type of the property.
    The Duke's Bookstore application demonstrates how to use the setProperty element to set the current book from a request parameter in the database bean in bookstore2/web/bookdetails.jsp:
    <c:set var="bid" value="${param.bookId}"/>
    <jsp:setProperty name="bookDB" property="bookId"
    value="${bid}" />
    The following fragment from the page bookstore2/web/bookshowcart.jsp illustrates how to initialize a BookDB bean with a database object. Because the initialization is nested in a useBean element, it is executed only when the bean is created.
    <jsp:useBean id="bookDB" class="database.BookDB" scope="page">
    <jsp:setProperty name="bookDB" property="database"
    value="${bookDBAO}" />
    </jsp:useBean>
    Retrieving JavaBeans Component Properties
    The main way to retrieve JavaBeans component properties is by using the JSP EL expressions. Thus, to retrieve a book title, the Duke's Bookstore application uses the following expression:
    ${bookDB.bookDetails.title}
    Another way to retrieve component properties is to use the jsp:getProperty element. This element converts the value of the property into a String and inserts the value into the response stream:
    <jsp:getProperty name="beanName" property="propName"/>
    Note that beanName must be the same as that specified for the id attribute in a useBean element, and there must be a getPropName method in the JavaBeans component. Although the preferred approach to getting properties is to use an EL expression, the getProperty element is available if you need to disable expression evaluation.
    All of the material in The J2EE(TM) 1.4 Tutorial is copyright-protected and may not be published in other works without express written permission from Sun Microsystems.
    hope this helps
    regards,

  • How to organize into smaller java files?

    I have a class which basically connects to a database and just about all of its methods query the database and return the results. The problem (which isn't actually a problem) is that the java file is getting so big because there are literally hundreds of methods representing different queries to the database.
    Does anyone has any idea how to break this class into smaller files? Is there a "include" statement of some sort that I can use to include these "sub-java" files?

    Does anyone has any idea how to break this class into smaller files? Is there a "include" statement of some sort that I can use to include these "sub-java" files?Different classes would still mean that user code would need to change.
    The problem (which isn't actually a problem) is that the java file is getting so big because there are literally hundreds of methods representing different queries to the database.Depending on how that is organized that isn't necessarily a problem. For instance if it did nothing but manage calls and not extraction then it isn't a terrible problem.
    If not then as previously suggested you break it by functional block. The closes model to what you have would be to break it into a class per each data model entity and then either add support classes for more complex support or add to one of the matching model entities.

  • How to generate .java file from xml?

    Does anyone have an idea of how i can generate .java file from xml file? Tools like jakrata digester, JOX are there but both of them are useful in populating java beans from xml. My requirement is to generate .java file from .xml with getters and setters methods for xml elements/attributes. I also tried JAXB. But JAXB generates bunch of files and most of them are interfaces, which is not going to work for me.
    For e.g. i have following xml file and i want to generate Address.java file with getters/setters. Any ideas?
    <?xml version='1.0' encoding='UTF-8' ?>
    <Address>
    <FirstName type="String"/>
    <PoBox type="int"/>
    </Address>
    Thanks,
    Vicky

    Crosspost.
    http://forum.java.sun.com/thread.jsp?thread=475564&forum=4&message=2205846

  • In my iPhoto library, only some images appear as thumbnails.  The rest are blank but appear briefly when scrolling through or properly when double clicked.  Any ideas?

    In my iPhoto library, only some images appear as thumbnails.  The rest are blank but appear briefly when scrolling through or properly when double clicked.  Any ideas?

    Option 1
    Back Up and try rebuild the library: hold down the command and option (or alt) keys while launching iPhoto. Use the resulting dialogue to rebuild. Choose to Rebuild iPhoto Library Database from automatic backup.
    If that fails:
    Option 2
    Download iPhoto Library Manager and use its rebuild function. This will create a new library based on data in the albumdata.xml file. Not everything will be brought over - no slideshows, books or calendars, for instance - but it should get all your albums and keywords back.
    Because this process creates an entirely new library and leaves your old one untouched, it is non-destructive, and if you're not happy with the results you can simply return to your old one. .
    Regards
    TD

  • Associating .java files with JDeveloper in Windows

    Is there some mechanism via by which I can load a .java file in a currently instance of JDeveloper (905p) on Windows (2K) from the command line?
    I want to be able to associate .java files with JDeveloper with appropriate actions defined, so that when I double-click on a .java file in Windows Explorer, it gets opened up in the currently running JDeveloper instance ... rather than opening a new instance of JDeveloper?
    Thanks

    Hi,
    There's no easy way to do this at the moment. However, in the 10g production release, functionality has been added to associate .java files (and other artefacts e.g. .jpr files) with JDeveloper.
    Thanks,
    Brian
    JDev Team

  • Hi i am getting Innternal Error in jdeveloper IDE in side preferences- code editer- java

    hi i am getting Innternal Error in jdeveloper IDE in side preferences->code editer->java
    if u know something about this error psease share here
    java.lang.NullPointerException
      at oracle.jdevimpl.java.editing.JavaOptionsPanel.loadSettingsFrom(JavaOptionsPanel.java:186)
      at oracle.jdevimpl.java.editing.JavaOptionsPanel.onEntry(JavaOptionsPanel.java:67)
      at oracle.ide.panels.MDDPanel.enterTraversableImpl(MDDPanel.java:1220)
      at oracle.ide.panels.MDDPanel.enterTraversable(MDDPanel.java:1201)
      at oracle.ide.panels.MDDPanel.access$1200(MDDPanel.java:128)
      at oracle.ide.panels.MDDPanel$Tsl.updateSelectedNavigable(MDDPanel.java:1657)
      at oracle.ide.panels.MDDPanel$Tsl.updateSelection(MDDPanel.java:1525)
      at oracle.ide.panels.MDDPanel$Tsl.actionPerformed(MDDPanel.java:1519)
      at javax.swing.Timer.fireActionPerformed(Timer.java:291)
      at javax.swing.Timer$DoPostEvent.run(Timer.java:221)
      at java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:209)
      at java.awt.EventQueue.dispatchEventImpl(EventQueue.java:642)
      at java.awt.EventQueue.access$000(EventQueue.java:85)
      at java.awt.EventQueue$1.run(EventQueue.java:603)
      at java.awt.EventQueue$1.run(EventQueue.java:601)
      at java.security.AccessController.doPrivileged(Native Method)
      at java.security.AccessControlContext$1.doIntersectionPrivilege(AccessControlContext.java:87)
      at java.awt.EventQueue.dispatchEvent(EventQueue.java:612)
      at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:269)
      at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:184)
      at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:178)
      at java.awt.Dialog$1.run(Dialog.java:1046)
      at java.awt.Dialog$3.run(Dialog.java:1098)
      at java.security.AccessController.doPrivileged(Native Method)
      at java.awt.Dialog.show(Dialog.java:1096)
      at java.awt.Component.show(Component.java:1585)
      at java.awt.Component.setVisible(Component.java:1537)
      at java.awt.Window.setVisible(Window.java:842)
      at java.awt.Dialog.setVisible(Dialog.java:986)
      at oracle.bali.ewt.dialog.JEWTDialog.runDialog(JEWTDialog.java:395)
      at oracle.bali.ewt.dialog.JEWTDialog.runDialog(JEWTDialog.java:356)
      at oracle.ide.dialogs.WizardLauncher.runDialog(WizardLauncher.java:55)
      at oracle.ide.panels.TDialogLauncher.showDialog(TDialogLauncher.java:225)
      at oracle.ide.config.IdeSettings.showDialog(IdeSettings.java:808)
      at oracle.ide.config.IdeSettings.showDialog(IdeSettings.java:601)
      at oracle.ide.ceditor.CodeEditorController.handleEvent(CodeEditorController.java:956)
      at oracle.ide.controller.IdeAction.performAction(IdeAction.java:529)
      at oracle.ide.controller.IdeAction.actionPerformedImpl(IdeAction.java:897)
      at oracle.ide.controller.IdeAction.actionPerformed(IdeAction.java:501)
      at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:1995)
      at javax.swing.AbstractButton$Handler.actionPerformed(AbstractButton.java:2318)
      at javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:387)
      at javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:242)
      at javax.swing.AbstractButton.doClick(AbstractButton.java:357)
      at javax.swing.plaf.basic.BasicMenuItemUI.doClick(BasicMenuItemUI.java:809)
      at javax.swing.plaf.basic.BasicMenuItemUI$Handler.mouseReleased(BasicMenuItemUI.java:850)
      at java.awt.Component.processMouseEvent(Component.java:6289)
      at javax.swing.JComponent.processMouseEvent(JComponent.java:3267)
      at java.awt.Component.processEvent(Component.java:6054)
      at java.awt.Container.processEvent(Container.java:2041)
      at java.awt.Component.dispatchEventImpl(Component.java:4652)
      at java.awt.Container.dispatchEventImpl(Container.java:2099)
      at java.awt.Component.dispatchEvent(Component.java:4482)
      at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4577)
      at java.awt.LightweightDispatcher.processMouseEvent(Container.java:4238)
      at java.awt.LightweightDispatcher.dispatchEvent(Container.java:4168)
      at java.awt.Container.dispatchEventImpl(Container.java:2085)
      at java.awt.Window.dispatchEventImpl(Window.java:2478)
      at java.awt.Component.dispatchEvent(Component.java:4482)
      at java.awt.EventQueue.dispatchEventImpl(EventQueue.java:644)
      at java.awt.EventQueue.access$000(EventQueue.java:85)
      at java.awt.EventQueue$1.run(EventQueue.java:603)
      at java.awt.EventQueue$1.run(EventQueue.java:601)
      at java.security.AccessController.doPrivileged(Native Method)
      at java.security.AccessControlContext$1.doIntersectionPrivilege(AccessControlContext.java:87)
      at java.security.AccessControlContext$1.doIntersectionPrivilege(AccessControlContext.java:98)
      at java.awt.EventQueue$2.run(EventQueue.java:617)
      at java.awt.EventQueue$2.run(EventQueue.java:615)
      at java.security.AccessController.doPrivileged(Native Method)
      at java.security.AccessControlContext$1.doIntersectionPrivilege(AccessControlContext.java:87)
      at java.awt.EventQueue.dispatchEvent(EventQueue.java:614)
      at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:269)
      at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:184)
      at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:174)
      at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:169)
      at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:161)
      at java.awt.EventDispatchThread.run(EventDispatchThread.java:122)

    Hi,
    make sure the IDE is installed with the proper JDK version
    Frank

  • CVS imports Java files but they do not appear!!

    Hi all,
    I am starting to use CVS and was able to set up the server import the project and to check it out and everything seems to work fine !!! But unfortunatly the java files that are imported do not appear in the application navigator. The folder in which they are normally contained appears but it seems to be empty. Also when i run my pages the code contained in the java files is executed but i cannot go and modify it !
    do you have any advices? please
    Regards,
    Carl

    hi Brenden,
    thx again for your reply,
    I have tryied opening closing re-importing the project always unsuccesfully!
    I tried the Project Content setting for my project and i was able to have some of the files to appear. but it never goes into the sub-directories even if the option is checked I really find this weird. Just to know if i try the same project with the same options all the java files are there!! so it is related to CVS.
    Regards,
    Carl

  • How to create JAVA Class file from an exisitng JAVA file in JDEVELOPER

    Hi All,
    I have a file called abc.java and i need to generate a class for the same using JDEVELOPER. Please help me what are the steps to be followed. I'm totally new to JAVA and first time working on JDEVELOPER tool.
    Thanks in Advance !

    Being completely new to something is not an argument (or shall we be honest: an excuse?) to not read the manual.
    Just to note: I would pick Eclipse or Netbeans if you're completely new to java. You'll have more chance of finding help either in forums, mailing lists or Google searches. But if you must stick with JDeveloper, the forum is here:
    JDeveloper and ADF

  • Open .java file in already open JDeveloper

    Is there a way to force JDeveloper to open all source files in only one JDeveloper window? I am working on a project and every once in a while I download a java source sample from the web. It would be good that instead of JDeveloper opening a brand new window, it would just add it to the Miscellaneous Files branch in the already open JDeveloper window.
    Thanks in advanced for any suggestions. Hopefully there is another way than having to save the file to disk and then going through JDeveloper's import menu.

    See...
    Associating .java files with JDeveloper in Windows
    for more details.

  • HT4059 I used to be able to transfer PDFs from Dropbox to iBooks but now the file appears for about 1 second and then disappears - any ideas?

    Can anyone help? I want to transfer PDF files from Dropbox to iBooks but when I do, the file appears for about 1 second then disappears. I used to Beatle to do this with no problems, but now it doesn't work. Help!

    I had the same problem.  After numerous attemps to Restore from Itunes, I decided to use the "Setup as New Ipad" option. It went through a few question on new setups. Afterwards all my apps, data, photo's were still intact. Which shows that the Restore from Itunes worked. There must be a small bug that prevents the Ipad to open after "Restore from Itunes" .  Hope it will help you. 

  • Error opening JAR files with double-click

    I have this problem while trying to execute a JAR file by double-clicking in Windows Vista Home: the JAR file never opens and it appears the following in the command line:
    Exception in thread "main" java.lang.NoClassDefFoundError: C:\PATH_TO_FILE\JAR_FILE_NAME/jar
    Caused by: java.lang.ClassNotFoundException: C:\PATH_TO_FILE\JAR_FILE_NAME.jar
    at java.net.URLClassLoader$1.run(Unknown Source)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.net.URLClassLoader.loadClass(Unknown Source)
    at sun.misc.Launcher$AppClassLoader.loadClass(Unknown Source)
    at java.lang.ClassLoader.loadClassInternal(Unknown Source)the strange thing is that I have the environmental variable CLASSPATH set to ".;" and while running from the command line as java -jar C:\PATH_TO_FILE\JAR_FILE_NAME.jar I have no problems...
    Any idea?? Thanks in advance!

    This was getting so frustrating I turned off FileVault and the problem went away. That's too bad, but there it is.

  • Cannot open files from Application Navigator without JDeveloper freezing

    Completely bewildered by this... please help.
    Been using JDeveloper 11.1.1.0.1 Build JDEVADF_MAIN.BOXER_GENERIC_081203.1854.5188 (pointing to Java 1.6.0.16) for a few months now. Every week or so I take a copy of my project (just take the whole project directory out of the JDeveloper/mywork directory) on my workstation and place on another identically configured workstation. This week, when I tried to do that and open JDeveloper on that 2nd workstation, JDeveloper froze. After reboots and retries, as far as I can get is to be able to open JDeveloper, single click on files in the Application Navigator (their properties show up in the Structure window), but if I try to open any of the source files (either by double clicking on them or right click -> open), JDeveloper freezes.
    What's weird is that I tried uninstalling Java and Jdeveloper on that 2nd workstation and reinstalling a fresh Java and Jdeveloper instance - with none of my code or projects -- just a clean off the oracle.com version of JDeveloper -- and I still had the same problem. I created a brand new application, project, and new class and I still cant click on the Class1.java to edit or view it without JDeveloper freezing.

    Arun,
    Thank you for the response.
    Many apologies - please ignore the exception I posted. The C:\Program Files\JDeveloper\modules was missing because on the last time I re-installed JDeveloper I forgot to copy that directory.
    Nonetheless, I reinstalled JDeveloper (again - this time correctly!) and I am still having the same symptoms (but no exception). I run jdev.exe from the command prompt, JDeveloper opens, I can create a new application, project, and class/.java file, but I cannot double click on the .java file to view or edit it. JDeveloper freezes and there is no exception in the command window.
    I tried running Process Monitor when I double click on the .java file to see if there are any obvious errors. (See the log below.) However, I'm not sure if these are "normal"/expected errors or not.
    I don't know what else to do at this point. Any other suggestions you can give are welcome.
    Thanks.
    (PS - I tried Puthanampatti's suggestion of modifying the ide.conf and jdev.conf, but received an error, "Unable to create an instance of the Java Virtual Machine. Located at path: C:\Program Files\Java\jdk1.6.0_16\jre\bin\client\jvm.dll", so I just restored the original ide.conf and jdev.confs to get rid of that error.)
    "Time of Day","Process Name","PID","Operation","Path","Result","Detail"
    "7:55:45.6616246 AM","jdeveloper.exe","732","QueryOpen","C:\Program Files\JDeveloper\jdeveloper\system\system11.1.1.0.31.51.88\o.ide.externaltools\tools.xml","NAME NOT FOUND",""
    "7:55:48.2424071 AM","jdeveloper.exe","732","QueryOpen","C:\Program Files\JDeveloper\jdeveloper\system\system11.1.1.0.31.51.88\o.ide\diagnostics\JDEVELOPER-ACTIONS-20091111-075548.txt","NAME NOT FOUND",""
    "7:55:48.2471507 AM","jdeveloper.exe","732","QueryOpen","C:\JDeveloper\mywork\Application1\Project1\src\project1\.svn","NAME NOT FOUND",""
    "7:55:48.2472873 AM","jdeveloper.exe","732","QueryOpen","C:\JDeveloper\mywork\Application1\Project1\src\.svn","NAME NOT FOUND",""
    "7:55:48.2474172 AM","jdeveloper.exe","732","QueryOpen","C:\JDeveloper\mywork\Application1\Project1\.svn","NAME NOT FOUND",""
    "7:55:48.2475125 AM","jdeveloper.exe","732","QueryOpen","C:\JDeveloper\mywork\Application1\.svn","NAME NOT FOUND",""
    "7:55:48.2476021 AM","jdeveloper.exe","732","QueryOpen","C:\JDeveloper\mywork\.svn","NAME NOT FOUND",""
    "7:55:48.2476753 AM","jdeveloper.exe","732","QueryOpen","C:\JDeveloper\.svn","NAME NOT FOUND",""
    "7:55:48.2477485 AM","jdeveloper.exe","732","QueryOpen","C:\.svn","NAME NOT FOUND",""
    "7:55:48.2480117 AM","jdeveloper.exe","732","QueryOpen","C:\JDeveloper\mywork\Application1\Project1\src\CVS\Root","PATH NOT FOUND",""
    "7:55:48.2480885 AM","jdeveloper.exe","732","QueryOpen","C:\JDeveloper\mywork\Application1\Project1\CVS\Root","PATH NOT FOUND",""
    "7:55:48.2481751 AM","jdeveloper.exe","732","QueryOpen","C:\JDeveloper\mywork\Application1\CVS\Root","PATH NOT FOUND",""
    "7:55:48.2482539 AM","jdeveloper.exe","732","QueryOpen","C:\JDeveloper\mywork\CVS\Root","PATH NOT FOUND",""
    "7:55:48.2483548 AM","jdeveloper.exe","732","QueryOpen","C:\JDeveloper\CVS\Root","PATH NOT FOUND",""
    "7:55:48.2484257 AM","jdeveloper.exe","732","QueryOpen","C:\CVS\Root","PATH NOT FOUND",""
    "7:55:48.2488171 AM","jdeveloper.exe","732","QueryOpen","C:\JDeveloper\mywork\Application1\Project1\src\project1\.svn","NAME NOT FOUND",""
    "7:55:48.2489462 AM","jdeveloper.exe","732","QueryOpen","C:\JDeveloper\mywork\Application1\Project1\src\.svn","NAME NOT FOUND",""
    "7:55:48.2490610 AM","jdeveloper.exe","732","QueryOpen","C:\JDeveloper\mywork\Application1\Project1\.svn","NAME NOT FOUND",""
    "7:55:48.2491479 AM","jdeveloper.exe","732","QueryOpen","C:\JDeveloper\mywork\Application1\.svn","NAME NOT FOUND",""
    "7:55:48.2492317 AM","jdeveloper.exe","732","QueryOpen","C:\JDeveloper\mywork\.svn","NAME NOT FOUND",""
    "7:55:48.2493046 AM","jdeveloper.exe","732","QueryOpen","C:\JDeveloper\.svn","NAME NOT FOUND",""
    "7:55:48.2493767 AM","jdeveloper.exe","732","QueryOpen","C:\.svn","NAME NOT FOUND",""
    "7:55:48.2499533 AM","jdeveloper.exe","732","QueryOpen","C:\JDeveloper\mywork\Application1\Project1\src\project1\.svn","NAME NOT FOUND",""
    "7:55:48.2500851 AM","jdeveloper.exe","732","QueryOpen","C:\JDeveloper\mywork\Application1\Project1\src\.svn","NAME NOT FOUND",""
    "7:55:48.2501927 AM","jdeveloper.exe","732","QueryOpen","C:\JDeveloper\mywork\Application1\Project1\.svn","NAME NOT FOUND",""
    "7:55:48.2502829 AM","jdeveloper.exe","732","QueryOpen","C:\JDeveloper\mywork\Application1\.svn","NAME NOT FOUND",""
    "7:55:48.2503704 AM","jdeveloper.exe","732","QueryOpen","C:\JDeveloper\mywork\.svn","NAME NOT FOUND",""
    "7:55:48.2504436 AM","jdeveloper.exe","732","QueryOpen","C:\JDeveloper\.svn","NAME NOT FOUND",""
    "7:55:48.2505168 AM","jdeveloper.exe","732","QueryOpen","C:\.svn","NAME NOT FOUND",""
    "7:55:48.4373422 AM","jdeveloper.exe","732","ReadFile","C:\Program Files\JDeveloper\jdeveloper\system\system11.1.1.0.31.51.88\o.jdeveloper\ToDoItems.xml","END OF FILE","Offset: 146, Length: 16,284"
    "7:55:48.4594115 AM","jdeveloper.exe","732","QueryDirectory","C:\Program Files\JDeveloper\jdeveloper\system\system11.1.1.0.31.51.88\o.jdeveloper\audit\profiles","NO MORE FILES",""
    "7:55:48.5261286 AM","jdeveloper.exe","732","NotifyChangeDirectory","C:\JDeveloper\mywork\Application1\Project1\src\project1","NOTIFY CLEANUP","Filter: FILE_NOTIFY_CHANGE_FILE_NAME, FILE_NOTIFY_CHANGE_DIR_NAME, FILE_NOTIFY_CHANGE_LAST_WRITE"
    "7:55:48.5270483 AM","jdeveloper.exe","732","NotifyChangeDirectory","C:\JDeveloper\mywork\Application1\Project1\src\project1","NOTIFY CLEANUP","Filter: FILE_NOTIFY_CHANGE_FILE_NAME, FILE_NOTIFY_CHANGE_DIR_NAME, FILE_NOTIFY_CHANGE_LAST_WRITE"
    "7:55:48.5763939 AM","jdeveloper.exe","732","NotifyChangeDirectory","C:\JDeveloper\mywork\Application1\Project1\src\project1","","Filter: FILE_NOTIFY_CHANGE_FILE_NAME, FILE_NOTIFY_CHANGE_DIR_NAME, FILE_NOTIFY_CHANGE_LAST_WRITE"
    "7:55:49.2833148 AM","jdeveloper.exe","732","ReadFile","C:\Program Files\JDeveloper\jdeveloper\system\system11.1.1.0.31.51.88\o.jdeveloper\audit\profiles\code-assist-rules.xml","END OF FILE","Offset: 27,798, Length: 5,016"
    "7:55:49.3666653 AM","jdeveloper.exe","732","QueryOpen","C:\JDeveloper\mywork\Application1\Project1\classes\java.class","NAME NOT FOUND",""
    "7:55:49.3670078 AM","jdeveloper.exe","732","QueryOpen","C:\JDeveloper\mywork\Application1\Project1\src\java.java","NAME NOT FOUND",""
    "7:55:49.3674403 AM","jdeveloper.exe","732","QueryOpen","C:\JDeveloper\mywork\Application1\Project1\src\java.sqlj","NAME NOT FOUND",""
    "7:55:49.3677512 AM","jdeveloper.exe","732","QueryOpen","C:\Program Files\Java\jdk1.6.0_16\jre\lib\sunrsasign.jar\java.class","PATH NOT FOUND",""
    "7:55:49.3707901 AM","jdeveloper.exe","732","QueryOpen","C:\Program Files\Java\jdk1.6.0_16\jre\classes\java.class","PATH NOT FOUND",""
    "7:55:49.3714458 AM","jdeveloper.exe","732","CreateFile","C:\Program Files\Java\jdk1.6.0_16\jre\lib\sunrsasign.jar","NAME NOT FOUND","Desired Access: Read Data/List Directory, Synchronize, Disposition: Open, Options: Directory, Synchronous IO Non-Alert, Attributes: n/a, ShareMode: Read, Write, AllocationSize: n/a"
    "7:55:49.3718358 AM","jdeveloper.exe","732","CreateFile","C:\Program Files\Java\jdk1.6.0_16\jre\classes","NAME NOT FOUND","Desired Access: Read Data/List Directory, Synchronize, Disposition: Open, Options: Directory, Synchronous IO Non-Alert, Attributes: n/a, ShareMode: Read, Write, AllocationSize: n/a"
    "7:55:49.3888637 AM","jdeveloper.exe","732","CreateFile","C:\Program Files\Java\jdk1.6.0_16\jre\lib\sunrsasign.jar","NAME NOT FOUND","Desired Access: Read Data/List Directory, Synchronize, Disposition: Open, Options: Directory, Synchronous IO Non-Alert, Attributes: n/a, ShareMode: Read, Write, AllocationSize: n/a"
    "7:55:49.3892489 AM","jdeveloper.exe","732","CreateFile","C:\Program Files\Java\jdk1.6.0_16\jre\classes","NAME NOT FOUND","Desired Access: Read Data/List Directory, Synchronize, Disposition: Open, Options: Directory, Synchronous IO Non-Alert, Attributes: n/a, ShareMode: Read, Write, AllocationSize: n/a"
    "7:55:49.4202677 AM","jdeveloper.exe","732","CreateFile","C:\Program Files\Java\jdk1.6.0_16\jre\lib\sunrsasign.jar","NAME NOT FOUND","Desired Access: Read Data/List Directory, Synchronize, Disposition: Open, Options: Directory, Synchronous IO Non-Alert, Attributes: n/a, ShareMode: Read, Write, AllocationSize: n/a"
    "7:55:49.4205085 AM","jdeveloper.exe","732","CreateFile","C:\Program Files\Java\jdk1.6.0_16\jre\classes","NAME NOT FOUND","Desired Access: Read Data/List Directory, Synchronize, Disposition: Open, Options: Directory, Synchronous IO Non-Alert, Attributes: n/a, ShareMode: Read, Write, AllocationSize: n/a"
    "7:55:49.4331182 AM","jdeveloper.exe","732","CreateFile","C:\Program Files\Java\jdk1.6.0_16\jre\lib\sunrsasign.jar","NAME NOT FOUND","Desired Access: Read Data/List Directory, Synchronize, Disposition: Open, Options: Directory, Synchronous IO Non-Alert, Attributes: n/a, ShareMode: Read, Write, AllocationSize: n/a"
    "7:55:49.4333241 AM","jdeveloper.exe","732","CreateFile","C:\Program Files\Java\jdk1.6.0_16\jre\classes","NAME NOT FOUND","Desired Access: Read Data/List Directory, Synchronize, Disposition: Open, Options: Directory, Synchronous IO Non-Alert, Attributes: n/a, ShareMode: Read, Write, AllocationSize: n/a"
    "7:55:49.4404331 AM","jdeveloper.exe","732","QueryOpen","C:\JDeveloper\mywork\Application1\Project1\classes\oracle.class","NAME NOT FOUND",""
    "7:55:49.4408477 AM","jdeveloper.exe","732","QueryOpen","C:\JDeveloper\mywork\Application1\Project1\src\oracle.java","NAME NOT FOUND",""
    "7:55:49.4410449 AM","jdeveloper.exe","732","QueryOpen","C:\JDeveloper\mywork\Application1\Project1\src\oracle.sqlj","NAME NOT FOUND",""
    "7:55:49.4413860 AM","jdeveloper.exe","732","QueryOpen","C:\Program Files\Java\jdk1.6.0_16\jre\lib\sunrsasign.jar\oracle.class","PATH NOT FOUND",""
    "7:55:49.4416464 AM","jdeveloper.exe","732","QueryOpen","C:\Program Files\Java\jdk1.6.0_16\jre\classes\oracle.class","PATH NOT FOUND",""
    "7:55:49.4421182 AM","jdeveloper.exe","732","CreateFile","C:\Program Files\Java\jdk1.6.0_16\jre\lib\sunrsasign.jar","NAME NOT FOUND","Desired Access: Read Data/List Directory, Synchronize, Disposition: Open, Options: Directory, Synchronous IO Non-Alert, Attributes: n/a, ShareMode: Read, Write, AllocationSize: n/a"
    "7:55:49.4425062 AM","jdeveloper.exe","732","CreateFile","C:\Program Files\Java\jdk1.6.0_16\jre\classes","NAME NOT FOUND","Desired Access: Read Data/List Directory, Synchronize, Disposition: Open, Options: Directory, Synchronous IO Non-Alert, Attributes: n/a, ShareMode: Read, Write, AllocationSize: n/a"
    "7:55:49.4430267 AM","jdeveloper.exe","732","CreateFile","C:\Program Files\Java\jdk1.6.0_16\jre\lib\sunrsasign.jar","NAME NOT FOUND","Desired Access: Read Data/List Directory, Synchronize, Disposition: Open, Options: Directory, Synchronous IO Non-Alert, Attributes: n/a, ShareMode: Read, Write, AllocationSize: n/a"
    "7:55:49.4434318 AM","jdeveloper.exe","732","CreateFile","C:\Program Files\Java\jdk1.6.0_16\jre\classes","NAME NOT FOUND","Desired Access: Read Data/List Directory, Synchronize, Disposition: Open, Options: Directory, Synchronous IO Non-Alert, Attributes: n/a, ShareMode: Read, Write, AllocationSize: n/a"
    "7:55:49.4438176 AM","jdeveloper.exe","732","CreateFile","C:\Program Files\Java\jdk1.6.0_16\jre\lib\sunrsasign.jar","NAME NOT FOUND","Desired Access: Read Data/List Directory, Synchronize, Disposition: Open, Options: Directory, Synchronous IO Non-Alert, Attributes: n/a, ShareMode: Read, Write, AllocationSize: n/a"
    "7:55:49.4441746 AM","jdeveloper.exe","732","CreateFile","C:\Program Files\Java\jdk1.6.0_16\jre\classes","NAME NOT FOUND","Desired Access: Read Data/List Directory, Synchronize, Disposition: Open, Options: Directory, Synchronous IO Non-Alert, Attributes: n/a, ShareMode: Read, Write, AllocationSize: n/a"

Maybe you are looking for

  • Mackie Universal Controller and Logic...

    Hi all I have one on order and believe it doesn't come with a manual for using with Logic. Any ideas on the best place to start with useful resources? Thanks! Steve

  • Air Play - Air Server - Air Parrot

    Windows 8.1 Tablet with Air Parrot installed.  Windows 7 Enterprise Desktop unit with Air Server installed.  Air Parrot will not connect via the tablet to the Desktop Air Server. Ipads all work great.  So we are wondering if there is a setting in Win

  • SQL2012 Express Error: "insufficient system memory in resource pool 'internal' to run this query"

    I am running the SQL2012 express (version shown below) and get the following error after a day or two of operation. This is a new server 2012 installation. source: SQL2012Express  "There is insufficient system memory in resource pool 'internal' to ru

  • T-60 - Error: Blue Tooth Stack

    T-60 2623D6U with XP Professional. I was recently hit with the trojan from ... well wherever trojans come from other than USC.  Anyway, it forced me to reformat and reload.  Since I bought a few new programs and updated a few others there was a bit o

  • Can't use phc-intel with 3.9.3

    I installed the AUR package for phc-intel, changed the VIDS in /etc/phc-intel.conf and rebooted. Running /usr/bin/phc-intel start doesn't have any effect (status still shows as "Stopped") I'm running a custom Zen kernel, acpi-cpufreq is built as a mo