Java File Handling

Hi Genious,
I m maintaining a error log file in my java application.now i want as soon log file exceed size limit 1024 kb. a new file should be created in same folder with datetime stamp.
pls give any me any idea how to achieve same ASAP.

long fileSize = currentLogFile.length();
// bytes to kb - 1048576 = 1024 * 1024
if (filesize >= 1048576)
To continue to log, depending on your code...you would probably need to close your streams from the old file, close the file, then create a new file with the new stamp.
For example, if you had a simple log method:
private void log (String tempString)
if (logFile.length > 1048576)
pbuffer.close();
logFile.close();
DateFormat df = new SimpleDateFormat("ddMMyy");
String tempString = df.format(calendar.getTime());
File file = new File("C:/log" + tempString + System.currentTimeMillis() + ".txt");
pbuffer = new BufferedWriter(new FileWriter(file.getName()));
pbuffer.write(tempString);
}The example depends on what you are using to write the file...here I am just using a simple BufferedWriter to do all the file writing. Maybe this will help you however. :)

Similar Messages

  • JAVA  File handling. ( Urgent  Response Appreciated)

    Hi I'm pretty new to Java. I would appreciate if any one could write programme for me for the below scenario:
    Write a Java program which accepts the name of a text file, reads in that file, and prints out the following information about the file:
    1. a list of all letters (A through Z) in that file, disregarding case (e.g. count ?a? and ?A? as two occurrences of the letter A), ordered with the most frequently used letter first and the least frequently used letter last, along with the number of times each letter was used,
    2. an alphabetized list of all distinct words in that file with the number of times each word was used,
    3. the average number of letters in a word, and
    4. the average number of words in a sentence.
    Use the following example paragraph to set up your test input text file:
    Any experienced programmer engaged in writing programs for use by others knows that, once his program is working correctly, good output is a must. Few people really care how much time and trouble a programmer has spent in designing and debugging a program. Most people see only the results. Often, by the time a programmer has finished tackling a difficult problem, any output may look great. The programmer knows what it means and how to interpret it. However, the same cannot be said for others, or even for the programmer himself six months hence.

    Hi that's not assignment question.Please do not lie. It is very not good. It is painfully obvious that that is an assignment question.
    I tried to frame
    my problem as questions so that its easy to
    understand. I cannot provide the programm becuase I
    deleted my whole programe This is another lie. That makes you zero for two thus far.
    solution. Please provide me with solution. I'm need
    of it .Stop begging like a dog.
    Start learning.
    Start here http://java.sun.com/docs/books/tutorial/java/index.html
    and don't come back until you have some basic code written.

  • Is File handling in Java Swing possible?

    Hi I need to know whether file handling in Java Swing is possible or not?

    cents wrote:
    Thanks for ur answer.....Actually I just wanted to know whether "Reading from a file" and "Writing to a file" in Java Swing is possible or not?
    Edited by: cents on Mar 16, 2010 9:35 AMWhat did google tell you? Did you see anything interesting in the API?

  • M new to this forum + new to java please help me with file handling program

    hi i want to make a file handling program where in i want to input a text file say f1 whose style is mentioned as below
    aaa...bcd
    aaabbc
    acdce
    a..dd
    abbcd
    now i want to write d out put of file f1 to file f2 but only those string entries widout any ... in them how to do that :-(( please help :((

    import java.io.*;
    import java.lang.*;
    class javcsse{
             void javsce (){
              BufferedReader in;
            PrintWriter out;
            String line;
            try
                in = new BufferedReader(new FileReader("e:\\cntcs\\n7.txt"));
                out = new PrintWriter("e:\\cntcs\\n8.txt");
               line = in.readLine();
               while(line != null)
                     if(line.contains("...") && line.contains("....")){
                         break ;                
                         else{
                               if(line.contains("cc"))
                              System.out.println(line+"\n");
                                      out.println(line);
                    line = in.readLine();
                in.close();
                out.close();
            } catch (Exception ex)
                System.err.println(ex.getMessage());
      public class javcse{
        public static void main(String[] args) {
            new javcsse();
    }hey i wrote this code yet could u tell y is it still not working :((

  • Java File not found exception

    We get the followign when we navigate to the 'Peoplesoft' domain and then
    add a servlet and attempt to "persist".
    everything else seems to work fine.
    By navigating to the peolesoft domain, we open the default server
    and use "edit other domain" to pull up the console. then navigate to portal ->
    edit descriptors.
    OS is an Win2k Server.
    Thanks in advance for any help.
    ---- Error starts below ------
    java.io.FileNotFoundException: f:\bea\weblogic\wlserver6.1\config\peoplesoft\applications
    (Access is denied)
         at java.io.FileInputStream.open(Native Method)
         at java.io.FileInputStream.(FileInputStream.java:64)
         at java.io.FileInputStream.(FileInputStream.java:95)
         at weblogic.utils.jars.RandomAccessJarFile.copyJarToJarDir(RandomAccessJarFile.java:272)
         at weblogic.utils.jars.RandomAccessJarFile.(RandomAccessJarFile.java:144)
         at weblogic.servlet.internal.dd.DescriptorLoader.persist(DescriptorLoader.java:598)
         at java.lang.reflect.Method.invoke(Native Method)
         at weblogic.management.internal.DynamicMBeanImpl.invokeLocally(DynamicMBeanImpl.java:636)
         at weblogic.management.internal.DynamicMBeanImpl.invoke(DynamicMBeanImpl.java:621)
         at com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1555)
         at com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1523)
         at weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:468)
         at weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:209)
         at $Proxy79.persist(Unknown Source)
         at weblogic.management.console.actions.mbean.DoPersistTopLevelDescriptorAction.perform(DoPersistTopLevelDescriptorAction.java:78)
         at weblogic.management.console.actions.internal.ActionServlet.doAction(ActionServlet.java:171)
         at weblogic.management.console.actions.internal.ActionServlet.doGet(ActionServlet.java:91)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:265)
         at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:200)
         at weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppServletContext.java:2495)
         at weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java:2204)
         at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:139)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
    --------------- nested within: ------------------
    weblogic.management.console.actions.ActionException: An error occurred while attempting
    to persist 'WebDescriptor-5' - with nested exception:
    [java.io.FileNotFoundException: f:\bea\weblogic\wlserver6.1\config\peoplesoft\applications
    (Access is denied)]
         at weblogic.management.console.actions.ErrorAction.(ErrorAction.java:68)
         at weblogic.management.console.actions.mbean.DoPersistTopLevelDescriptorAction.perform(DoPersistTopLevelDescriptorAction.java:80)
         at weblogic.management.console.actions.internal.ActionServlet.doAction(ActionServlet.java:171)
         at weblogic.management.console.actions.internal.ActionServlet.doGet(ActionServlet.java:91)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:265)
         at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:200)
         at weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppServletContext.java:2495)
         at weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java:2204)
         at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:139)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
    Current Date
    Fri Jun 20 14:16:52 CDT 2003
    Console Release Build
    Console Build
    Server Release Build
    6.1.2.0
    Server Build
    WebLogic Server 6.1 SP2 12/18/2001 11:13:46 #154529
    All Server Product Versions
    WebLogic Server 6.1 SP2 12/18/2001 11:13:46 #154529
    WebLogic XML Module 6.1 SP2 12/18/2001 11:28:02 #154529
    Server System Properties
    awt.toolkit = sun.awt.windows.WToolkit bea.home = F:\bea\weblogic file.encoding
    = Cp1252 file.encoding.pkg = sun.io file.separator = \ java.awt.fonts = java.awt.graphicsenv
    = sun.awt.Win32GraphicsEnvironment java.awt.printerjob = sun.awt.windows.WPrinterJob
    java.class.path = .;.\lib\weblogic_sp.jar;.\lib\weblogic.jar java.class.version
    = 47.0 java.ext.dirs = F:\bea\weblogic\jdk131\jre\lib\ext java.home = F:\bea\weblogic\jdk131\jre
    java.io.tmpdir = C:\DOCUME~1\lackp\LOCALS~1\Temp\ java.library.path = F:\bea\weblogic\jdk131\bin;.;C:\WINNT\System32;C:\WINNT;.\bin;f:\oracle\ora92\bin;C:\Program
    Files\Oracle\jre\1.3.1\bin;C:\Program Files\Oracle\jre\1.1.8\bin;C:\WINNT\system32;C:\WINNT;C:\WINNT\System32\Wbem;C:\Program
    Files\Dell\OpenManage\Array Manager;C:\Program Files\Dell\OpenManage\oma\bin;C:\Program
    Files\Dell\OpenManage\OMSA\bin;C:\Program Files\Dell\OpenManage\LU\bin;C:\Program
    Files\Dell\OpenManage\RAC\MN;C:\Program Files\Dell\OpenManage\oldiags\bin;C:\PROGRA~1\CA\Common\SCANEN~1;C:\PROGRA~1\CA\eTrust\INOCUL~1;f:\bea\tuxedo\bin
    java.naming.factory.initial = weblogic.jndi.WLInitialContextFactory java.naming.factory.url.pkgs
    = weblogic.jndi.factories java.protocol.handler.pkgs = weblogic.utils|weblogic.utils|weblogic.net|weblogic.management|weblogic.net|weblogic.net
    java.runtime.name = Java(TM) 2 Runtime Environment, Standard Edition java.runtime.version
    = 1.3.1-b24 java.security.policy = =F:\bea\weblogic\wlserver6.1/lib/weblogic.policy
    java.specification.name = Java Platform API Specification java.specification.vendor
    = Sun Microsystems Inc. java.specification.version = 1.3 java.vendor = Sun Microsystems
    Inc. java.vendor.url = http://java.sun.com/ java.vendor.url.bug = http://java.sun.com/cgi-bin/bugreport.cgi
    java.version = 1.3.1 java.vm.info = mixed mode java.vm.name = Java HotSpot(TM)
    Client VM java.vm.specification.name = Java Virtual Machine Specification java.vm.specification.vendor
    = Sun Microsystems Inc. java.vm.specification.version = 1.0 java.vm.vendor = Sun
    Microsystems Inc. java.vm.version = 1.3.1-b24 javax.rmi.CORBA.PortableRemoteObjectClass
    = weblogic.iiop.PortableRemoteObjectDelegateImpl javax.rmi.CORBA.UtilClass = weblogic.iiop.UtilDelegateImpl
    javax.xml.parsers.DocumentBuilderFactory = weblogic.xml.jaxp.RegistryDocumentBuilderFactory
    javax.xml.parsers.SAXParserFactory = weblogic.xml.jaxp.RegistrySAXParserFactory
    javax.xml.transform.TransformerFactory = weblogic.xml.jaxp.RegistrySAXTransformerFactory
    jmx.implementation.name = JMX RI jmx.implementation.vendor = Sun Microsystems
    jmx.implementation.version = 1.0 jmx.specification.name = Java Management Extensions
    jmx.specification.vendor = Sun Microsystems jmx.specification.version = 1.0 Final
    Release line.separator = org.xml.sax.driver = weblogic.apache.xerces.parsers.SAXParser
    os.arch = x86 os.name = Windows 2000 os.version = 5.0 path.separator = ; sun.boot.class.path
    = F:\bea\weblogic\jdk131\jre\lib\rt.jar;F:\bea\weblogic\jdk131\jre\lib\i18n.jar;F:\bea\weblogic\jdk131\jre\lib\sunrsasign.jar;F:\bea\weblogic\jdk131\jre\classes
    sun.boot.library.path = F:\bea\weblogic\jdk131\jre\bin sun.cpu.endian = little
    sun.cpu.isalist = pentium i486 i386 sun.io.unicode.encoding = UnicodeLittle user.dir
    = F:\bea\weblogic\wlserver6.1 user.home = C:\Documents and Settings\lackp user.language
    = en user.name = lackp user.region = US user.timezone = America/Chicago weblogic.Domain
    = psglisadm weblogic.Name = psglissvr weblogic.ProductionModeEnabled = true weblogic.security.jaas.Configuration
    = weblogic.security.internal.ServerConfig weblogic.security.jaas.Policy = ./lib/Server.policy
    Request Info
    Protocol: HTTP/1.1
    ServerName: 127.0.0.1
    ServerPort: 7500
    Secure: false
    ContextPath: /console
    ServletPath: /common/error.jsp
    QueryString: MBean=psglisadm%3AApplication%3DPORTAL%2CLocation%3Dpsglissvr%2CName%3DWebDescriptor-5%2CType%3DWebDescriptor%2CWebAppComponent%3DPORTAL
    PathInfo: null
    PathTranslated: null
    RequestURI: /console/common/error.jsp
    AuthType: Basic
    ContentType: null
    CharacterEncoding: null
    Locale: en_US
    Method: GET
    Session: weblogic.servlet.internal.session.MemorySessionData@92f6
    RequestedSessionId: 2zcy822KqSaJQpWXGNL1nqUNyhuydJL83nKXQlVvxmElLHcP77pb!157731749!-1620044925!7500!9500!1056136434604
    RequestedSessionIdFromCookie: true
    RequestedSessionIdFromURL: false
    UserPrincipal: system
    RemoteUser: system
    RemoteAddr: 127.0.0.1
    RemoteHost: 127.0.0.1
    Parameters
    MBean = psglisadm:Application=PORTAL,Location=psglissvr,Name=WebDescriptor-5,Type=WebDescriptor,WebAppComponent=PORTAL
    Attributes
    wlinternalaction = weblogic.management.console.actions.internal.InternalActionContext@2229ca
    java.util.Locale = en_US weblogic.auth.status = 0 weblogic.httpd.user = system
    weblogic.management.console.catalog.Catalog = weblogic.management.console.catalog.XmlCatalog@34fa3c
    weblogic.management.console.helpers.BrowserHelper = User-Agent: Mozilla/4.0 (compatible;
    MSIE 6.0; Windows NT 5.0) IE: true Netscape: false Supported: true JavscriptHrefs:
    false TableCellClick: true DocumentReloadedOnResize: false DropdownStretchable:
    true CellSpacingBlank: false EmptyCellBlank: false ImgOnclickSupported: true TableBorderFancy:
    true PartialToWideTables: false DisabledControlSupported: true weblogic.management.console.helpers.DebugHelper
    = weblogic.management.console.helpers.DebugHelper@27a485 weblogic.management.console.helpers.UnitsHelper
    = weblogic.management.console.helpers.UnitsHelper@46fe47 weblogic.management.console.helpers.UrlHelper
    = weblogic.management.console.helpers.UrlHelper@65ce3c
    Headers
    Accept = image/gif, image/x-xbitmap, image/jpeg, image/pjpeg, */* Accept-Encoding
    = gzip, deflate Accept-Language = en-us Authorization = Basic c3lzdGVtOmdsaXN0ZWFtMDM=
    Connection = Keep-Alive Cookie = JSESSIONID=2zcy822KqSaJQpWXGNL1nqUNyhuydJL83nKXQlVvxmElLHcP77pb!157731749!-1620044925!7500!9500
    Host = 127.0.0.1:7500 Referer = http://127.0.0.1:7500/console/actions/mbean/MBeanDescriptorFramesetAction?isNew=false&sidebarFrameId=wl_console_frame_1056136434809&frameId=wl_console_frame_1056136434850&MBean=peoplesoft%3AApplication%3DPORTAL%2CName%3DPORTAL%2CType%3DWebAppComponent&bodyFrameId=wl_console_frame_1056136434811
    User-Agent = Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0)
    BrowserInfo
    User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0)
    IE: true
    Netscape: false
    Supported: true
    JavscriptHrefs: false
    TableCellClick: true
    DocumentReloadedOnResize: false
    DropdownStretchable: true
    CellSpacingBlank: false
    EmptyCellBlank: false
    ImgOnclickSupported: true
    TableBorderFancy: true
    PartialToWideTables: false
    DisabledControlSupported: true

    Editing other domains is a scenario fraught with peril, which is why it was
    deprecated and removed from the console. It looks to me that the error
    message sums up the problem, ther eis no applications directory in the
    peoplesoft domain? Have you tried creating that directory from the file
    system?
    cheers
    mbg
    "Dan" <[email protected]> wrote in message
    news:[email protected]...
    >
    We get the followign when we navigate to the 'Peoplesoft' domain and then
    add a servlet and attempt to "persist".
    everything else seems to work fine.
    By navigating to the peolesoft domain, we open the default server
    and use "edit other domain" to pull up the console. then navigate toportal ->
    edit descriptors.
    OS is an Win2k Server.
    Thanks in advance for any help.
    ---- Error starts below ------
    java.io.FileNotFoundException:f:\bea\weblogic\wlserver6.1\config\peoplesoft\applications
    (Access is denied)
    at java.io.FileInputStream.open(Native Method)
    at java.io.FileInputStream.(FileInputStream.java:64)
    at java.io.FileInputStream.(FileInputStream.java:95)
    atweblogic.utils.jars.RandomAccessJarFile.copyJarToJarDir(RandomAccessJarFile.
    java:272)
    at weblogic.utils.jars.RandomAccessJarFile.(RandomAccessJarFile.java:144)
    atweblogic.servlet.internal.dd.DescriptorLoader.persist(DescriptorLoader.java:
    598)
    at java.lang.reflect.Method.invoke(Native Method)
    atweblogic.management.internal.DynamicMBeanImpl.invokeLocally(DynamicMBeanImpl
    .java:636)
    atweblogic.management.internal.DynamicMBeanImpl.invoke(DynamicMBeanImpl.java:6
    21)
    atcom.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1555)
    atcom.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1523)
    at weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:468)
    at weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:209)
    at $Proxy79.persist(Unknown Source)
    atweblogic.management.console.actions.mbean.DoPersistTopLevelDescriptorAction.
    perform(DoPersistTopLevelDescriptorAction.java:78)
    atweblogic.management.console.actions.internal.ActionServlet.doAction(ActionSe
    rvlet.java:171)
    atweblogic.management.console.actions.internal.ActionServlet.doGet(ActionServl
    et.java:91)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    atweblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java
    :265)
    atweblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java
    :200)
    atweblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppServletCo
    ntext.java:2495)
    atweblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java
    :2204)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:139)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
    --------------- nested within: ------------------
    weblogic.management.console.actions.ActionException: An error occurredwhile attempting
    to persist 'WebDescriptor-5' - with nested exception:
    [java.io.FileNotFoundException:f:\bea\weblogic\wlserver6.1\config\peoplesoft\applications
    (Access is denied)]
    at weblogic.management.console.actions.ErrorAction.(ErrorAction.java:68)
    atweblogic.management.console.actions.mbean.DoPersistTopLevelDescriptorAction.
    perform(DoPersistTopLevelDescriptorAction.java:80)
    atweblogic.management.console.actions.internal.ActionServlet.doAction(ActionSe
    rvlet.java:171)
    atweblogic.management.console.actions.internal.ActionServlet.doGet(ActionServl
    et.java:91)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    atweblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java
    :265)
    atweblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java
    :200)
    atweblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppServletCo
    ntext.java:2495)
    atweblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java
    :2204)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:139)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
    Current Date
    Fri Jun 20 14:16:52 CDT 2003
    Console Release Build
    Console Build
    Server Release Build
    6.1.2.0
    Server Build
    WebLogic Server 6.1 SP2 12/18/2001 11:13:46 #154529
    All Server Product Versions
    WebLogic Server 6.1 SP2 12/18/2001 11:13:46 #154529
    WebLogic XML Module 6.1 SP2 12/18/2001 11:28:02 #154529
    Server System Properties
    awt.toolkit = sun.awt.windows.WToolkit bea.home = F:\bea\weblogicfile.encoding
    = Cp1252 file.encoding.pkg = sun.io file.separator = \ java.awt.fonts =java.awt.graphicsenv
    = sun.awt.Win32GraphicsEnvironment java.awt.printerjob =sun.awt.windows.WPrinterJob
    java.class.path = .;.\lib\weblogic_sp.jar;.\lib\weblogic.jarjava.class.version
    = 47.0 java.ext.dirs = F:\bea\weblogic\jdk131\jre\lib\ext java.home =F:\bea\weblogic\jdk131\jre
    java.io.tmpdir = C:\DOCUME~1\lackp\LOCALS~1\Temp\ java.library.path =F:\bea\weblogic\jdk131\bin;.;C:\WINNT\System32;C:\WINNT;.\bin;f:\oracle\ora9
    2\bin;C:\Program
    Files\Oracle\jre\1.3.1\bin;C:\ProgramFiles\Oracle\jre\1.1.8\bin;C:\WINNT\system32;C:\WINNT;C:\WINNT\System32\Wbem
    ;C:\Program
    Files\Dell\OpenManage\Array Manager;C:\ProgramFiles\Dell\OpenManage\oma\bin;C:\Program
    Files\Dell\OpenManage\OMSA\bin;C:\ProgramFiles\Dell\OpenManage\LU\bin;C:\Program
    Files\Dell\OpenManage\RAC\MN;C:\ProgramFiles\Dell\OpenManage\oldiags\bin;C:\PROGRA~1\CA\Common\SCANEN~1;C:\PROGRA~1
    \CA\eTrust\INOCUL~1;f:\bea\tuxedo\bin
    java.naming.factory.initial = weblogic.jndi.WLInitialContextFactoryjava.naming.factory.url.pkgs
    = weblogic.jndi.factories java.protocol.handler.pkgs =weblogic.utils|weblogic.utils|weblogic.net|weblogic.management|weblogic.net|
    weblogic.net
    java.runtime.name = Java(TM) 2 Runtime Environment, Standard Editionjava.runtime.version
    = 1.3.1-b24 java.security.policy ==F:\bea\weblogic\wlserver6.1/lib/weblogic.policy
    java.specification.name = Java Platform API Specificationjava.specification.vendor
    = Sun Microsystems Inc. java.specification.version = 1.3 java.vendor = SunMicrosystems
    Inc. java.vendor.url = http://java.sun.com/ java.vendor.url.bug =
    http://java.sun.com/cgi-bin/bugreport.cgi
    java.version = 1.3.1 java.vm.info = mixed mode java.vm.name = JavaHotSpot(TM)
    Client VM java.vm.specification.name = Java Virtual Machine Specificationjava.vm.specification.vendor
    = Sun Microsystems Inc. java.vm.specification.version = 1.0 java.vm.vendor= Sun
    Microsystems Inc. java.vm.version = 1.3.1-b24javax.rmi.CORBA.PortableRemoteObjectClass
    = weblogic.iiop.PortableRemoteObjectDelegateImpl javax.rmi.CORBA.UtilClass= weblogic.iiop.UtilDelegateImpl
    javax.xml.parsers.DocumentBuilderFactory =weblogic.xml.jaxp.RegistryDocumentBuilderFactory
    javax.xml.parsers.SAXParserFactory =weblogic.xml.jaxp.RegistrySAXParserFactory
    javax.xml.transform.TransformerFactory =weblogic.xml.jaxp.RegistrySAXTransformerFactory
    jmx.implementation.name = JMX RI jmx.implementation.vendor = SunMicrosystems
    jmx.implementation.version = 1.0 jmx.specification.name = Java ManagementExtensions
    jmx.specification.vendor = Sun Microsystems jmx.specification.version =1.0 Final
    Release line.separator = org.xml.sax.driver =weblogic.apache.xerces.parsers.SAXParser
    os.arch = x86 os.name = Windows 2000 os.version = 5.0 path.separator = ;sun.boot.class.path
    =F:\bea\weblogic\jdk131\jre\lib\rt.jar;F:\bea\weblogic\jdk131\jre\lib\i18n.ja
    r;F:\bea\weblogic\jdk131\jre\lib\sunrsasign.jar;F:\bea\weblogic\jdk131\jre\c
    lasses
    sun.boot.library.path = F:\bea\weblogic\jdk131\jre\bin sun.cpu.endian =little
    sun.cpu.isalist = pentium i486 i386 sun.io.unicode.encoding =UnicodeLittle user.dir
    = F:\bea\weblogic\wlserver6.1 user.home = C:\Documents and Settings\lackpuser.language
    = en user.name = lackp user.region = US user.timezone = America/Chicagoweblogic.Domain
    = psglisadm weblogic.Name = psglissvr weblogic.ProductionModeEnabled =true weblogic.security.jaas.Configuration
    = weblogic.security.internal.ServerConfig weblogic.security.jaas.Policy =./lib/Server.policy
    >
    >
    Request Info
    Protocol: HTTP/1.1
    ServerName: 127.0.0.1
    ServerPort: 7500
    Secure: false
    ContextPath: /console
    ServletPath: /common/error.jsp
    QueryString:MBean=psglisadm%3AApplication%3DPORTAL%2CLocation%3Dpsglissvr%2CName%3DWebDe
    scriptor-5%2CType%3DWebDescriptor%2CWebAppComponent%3DPORTAL
    PathInfo: null
    PathTranslated: null
    RequestURI: /console/common/error.jsp
    AuthType: Basic
    ContentType: null
    CharacterEncoding: null
    Locale: en_US
    Method: GET
    Session:weblogic.servlet.internal.session.MemorySessionData@92f6
    RequestedSessionId:2zcy822KqSaJQpWXGNL1nqUNyhuydJL83nKXQlVvxmElLHcP77pb!157731749!-1620044925!7
    500!9500!1056136434604
    RequestedSessionIdFromCookie: true
    RequestedSessionIdFromURL: false
    UserPrincipal: system
    RemoteUser: system
    RemoteAddr: 127.0.0.1
    RemoteHost: 127.0.0.1
    Parameters
    MBean =psglisadm:Application=PORTAL,Location=psglissvr,Name=WebDescriptor-5,Type=We
    bDescriptor,WebAppComponent=PORTAL
    >
    Attributes
    wlinternalaction =weblogic.management.console.actions.internal.InternalActionContext@2229ca
    java.util.Locale = en_US weblogic.auth.status = 0 weblogic.httpd.user =system
    weblogic.management.console.catalog.Catalog =weblogic.management.console.catalog.XmlCatalog@34fa3c
    weblogic.management.console.helpers.BrowserHelper = User-Agent:Mozilla/4.0 (compatible;
    MSIE 6.0; Windows NT 5.0) IE: true Netscape: false Supported: trueJavscriptHrefs:
    false TableCellClick: true DocumentReloadedOnResize: falseDropdownStretchable:
    true CellSpacingBlank: false EmptyCellBlank: false ImgOnclickSupported:true TableBorderFancy:
    true PartialToWideTables: false DisabledControlSupported: trueweblogic.management.console.helpers.DebugHelper
    = [email protected]nagement.console.helpers.UnitsHelper
    = [email protected]nagement.console.helpers.UrlHelper
    = weblogic.management.console.helpers.UrlHelper@65ce3c
    Headers
    Accept = image/gif, image/x-xbitmap, image/jpeg, image/pjpeg, */*Accept-Encoding
    = gzip, deflate Accept-Language = en-us Authorization = Basicc3lzdGVtOmdsaXN0ZWFtMDM=
    Connection = Keep-Alive Cookie =JSESSIONID=2zcy822KqSaJQpWXGNL1nqUNyhuydJL83nKXQlVvxmElLHcP77pb!157731749!-1
    620044925!7500!9500
    Host = 127.0.0.1:7500 Referer =http://127.0.0.1:7500/console/actions/mbean/MBeanDescriptorFramesetAction?isNew=false&sidebarFrameId=wl_console_frame_1056136434809&frameId=wl_console_frame_1056136434850&MBean=peoplesoft%3AApplication%3DPORTAL%2CName%3DPORTAL%2CType%3DWebAppComponent&bodyFrameId=wl_console_frame_1056136434811
    User-Agent = Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0)
    BrowserInfo
    User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT5.0)
    IE: true
    Netscape: false
    Supported: true
    JavscriptHrefs: false
    TableCellClick: true
    DocumentReloadedOnResize: false
    DropdownStretchable: true
    CellSpacingBlank: false
    EmptyCellBlank: false
    ImgOnclickSupported: true
    TableBorderFancy: true
    PartialToWideTables: false
    DisabledControlSupported: true

  • How to Generate a Java file for a JSP Page

    Hi ,
    I am using weblogic11 .
    I am working on a JSP page which nearly consists of 4000 lines of code.
    I need to debug the file , but weblogic server is not generating the java file for the JSP pages .
    Please let me know how can i genertae Java file for the jsp pages ??

    JSPs are compiled into servlets automatically and those classes are stored in WEB-INF/classes folder. Servlet engine handles servlets.

  • How to read messages in message pool from a java file

    Hi All,
    I want to read a message that is defined in a message pool of a webdynpro component.
    This reading should be done from a java file present in the "src" folder.
    How can I get the handle to the IWDComponent?
    Or is there any other way?
    Or is there any way of reading localized messages in a java file of a webdynpro component?
    Can you kindly guide me out of this issue?
    Thanks and regards
    RB

    Hello,
    my approach is more simple: how can I read within component A the message pool of another webdynpro component B ? Component A has a usage relation to component B .
    I tried this within component A:
    <b>this.wdThis.wdGetBInterface().wdGetAPI().getComponent().getTextAccessor().getText("ANY_TEXT");</b>
    I got the exeption:
    <b>java.lang.UnsupportedOperationException: Embedded Components are black boxes. You should not access parts which are not in their interface</b>.
    Is there any way to share message pools ?
    Thanks
    Kerstin

  • How do I know if this variable is a file handle?

    G'day
    (This has also been posted on StackOverflow)
    Say I have this code:
    function doFileStuff(){
        var file = "";
        try {
            file = fileOpen(filePath);
            // do stuff with file
        finally {
            fileClose(file);
    If the fileOpen() process fails, the fileClose() call will error. What I need to do is this sort of thing (pseudocode):
    if (isFile(file)){
        fileClose(file);
    I know I can test if file is an empty string still, and this works for me here, but it's not testing what I should be testing: whether file is a file handle. I can check the object's Java class, but this again sounds a bit hacky to me, and there should be a CFML way of doing it.
    There should be something like just isFile(), shouldn't there? I can't find anything like this in the docs.
    Any thoughts / tips? I have gone into more depth in my investigations on my blog. it's too wordy for here.
    Cheers for any help.
    Adam

    That would just defer the issue.. fileOpen() doesn't return a boolean, so I can't go:
    if (fileOpen(filePath)){
         fileClose(file);
    fileOpen() returns a file object; or nothing if it fails.  The whole thing is to identify whether it's a file.  That's the question.
    As per my original, it's dead easy to work around, provided one leverages known side effects of the situation (original variable state; that if it's a file it exposes some public properties; that one can doa  getClass() on it via Java, etc), but one shouldn't have to work around something as fundamental as this.  So I was wondering if I had missed something.
    Seemingly not (based on feedback I've had from various quarters).
    Adam

  • How to invoke another Java file in Java program?

    Hello all,
    Now I am building a commnity of agents that can talk in Java, I have another Java-Based dialogue system to handle the dialogue between the agents. But I don'y know how to invoke the Java dialogue system file in the agent class.
    Is there any methods can call another .java file in a Java program?
    Help!!!!!please

    Yep, vaguest of the vaguey vague vague.
    Anyhoo,
    I'm guessing you want to call a method from a different class?
    Assuming you have the "Runner" class and then "Agent1", "Agent2", etc.
    Agent1 whatever = new Agent1();

  • HOW: File handling - Date and time of file created/modified

    Hi all,
    Is there any way by which we can find out the date and time of the file created in operating system using file handling through PL/SQL.
    Eg:-
    I have a directory in which I am storing some files, and for a given file name I must know when that file was created, i mean date and time.
    Might be there is some simple way, please help out.
    regards
    CJ

    http://asktom.oracle.com/pls/asktom/f?p=100:11:0::::P11_QUESTION_ID:439619916584#73995149457661
    Remember to get the correct privs (java privs) on the directory.
    Mette

  • How to include .java file in all projects?

    Hi Friends, i have some questions related....
    1) i have a file .java with some great functions, this functions i need use in all projects, then what is the easy by moment i start a project, and copy this file to project..
      is possible have only 1 file with these utilities functions? (if yes how to declare or use in all projects?)
    Note these utilkities file i want use on JAVA desktop(swinf and javafx), on JSP webpages and in the futhurer on the mobile.
    2) i have a JSP project in 1 .JSP file i have 8 Tabs (CSS tabs) when user click on tab1 i execute some jsp java code. and if user click on tab2 i execute a different JSP code, but my problem is, the JSP file is large large large, 1500 lines, my question is: is possible (similar in PHP) do an include?
    <%
       include tab1.jsp
    %>
    thanks

    jamiguel77 wrote:
          1) i have a file .java with some great functions,
    If that is one Java file only I really doubt that those functions are "great" from a technical point of view...
    this functions i need use in all projects, then what is the easy by moment i start a project, and copy this file to project..
      is possible have only 1 file with these utilities functions? (if yes how to declare or use in all projects?)
    Note these utilkities file i want use on JAVA desktop(swinf and javafx), on JSP webpages and in the futhurer on the mobile.
    There is a  common approach to this problem which is a dependency repository. Various build tools address the dependency resolution problem. Most common are maven and greadle. Place your Jar file on a location you can reach from your various developement environments (eg. a share on a server in your network) Then configure your build tool to know about your repository.
    A better solution that a naked net share is a nexus server, which will not only hanlde dependencies you namually placed on your share but also dependencies available on public repositories.
    In your project you simply declare the (direct) dependencies of the Code you're writing. For maven you need an aditional file in your project: the pom.xml. maven (or greadle) will handle all the transient dependencies for you (as long as the pom.xml of the dependency also declares its own dependencies and those other dependencies are reachable for maven too).
    bye
    TPD

  • Various errors after upgrade (stale file handle, corrupt file)

    Hi,
    I performed a system update a couple of days ago and since then have not been able to access certain directories (it seems to be only my home directory and any directory in my Dropbox) using graphical file browsers (tested with thunar and nautilus). I can access them through the command line just fine but graphical file browsers give me a "Stale file handle" error.
    When I try to open a libreoffice application, I get the following error: "The application cannot be started. The configuration file "/etc/libreoffice/bootstraprc" is corrupt".
    The relevant part of my pacman logfile looks like this:
    [2014-07-10 07:05] [PACMAN] Running 'pacman -Syu'
    [2014-07-10 07:05] [PACMAN] synchronizing package lists
    [2014-07-10 07:05] [PACMAN] starting full system upgrade
    [2014-07-10 07:16] [PACMAN] upgraded alsa-lib (1.0.27.2-1 -> 1.0.28-1)
    [2014-07-10 07:16] [PACMAN] upgraded alsa-plugins (1.0.27-2 -> 1.0.28-1)
    [2014-07-10 07:16] [PACMAN] upgraded alsa-utils (1.0.27.2-1 -> 1.0.28-1)
    [2014-07-10 07:16] [PACMAN] upgraded lib32-gcc-libs (4.9.0-3 -> 4.9.0-5)
    [2014-07-10 07:16] [PACMAN] upgraded gcc-libs-multilib (4.9.0-3 -> 4.9.0-5)
    [2014-07-10 07:16] [PACMAN] upgraded aspell (0.60.6.1-1 -> 0.60.6.1-2)
    [2014-07-10 07:16] [PACMAN] upgraded readline (6.3.005-1 -> 6.3.006-1)
    [2014-07-10 07:16] [PACMAN] upgraded bash (4.3.011-1 -> 4.3.018-3)
    [2014-07-10 07:16] [PACMAN] upgraded autoconf (2.69-1 -> 2.69-2)
    [2014-07-10 07:16] [PACMAN] upgraded babl (0.1.10-1 -> 0.1.10-2)
    [2014-07-10 07:16] [PACMAN] upgraded qca (2.0.3-4 -> 2.0.3-5)
    [2014-07-10 07:16] [PACMAN] upgraded libdbusmenu-qt (0.9.2-2 -> 0.9.2-3)
    [2014-07-10 07:16] [PACMAN] upgraded polkit-qt (0.103.0-2 -> 0.103.0-3)
    [2014-07-10 07:16] [PACMAN] upgraded shared-mime-info (1.2-2 -> 1.3-1)
    [2014-07-10 07:16] [PACMAN] upgraded hunspell (1.3.2-3 -> 1.3.3-1)
    [2014-07-10 07:16] [PACMAN] upgraded perl (5.18.2-2 -> 5.20.0-5)
    [2014-07-10 07:16] [PACMAN] upgraded hspell (1.2-1 -> 1.2-2)
    [2014-07-10 07:16] [PACMAN] upgraded enchant (1.6.0-4 -> 1.6.0-5)
    [2014-07-10 07:16] [PACMAN] upgraded giflib (5.0.6-1 -> 5.1.0-1)
    [2014-07-10 07:16] [PACMAN] upgraded libxcursor (1.1.14-1 -> 1.1.14-2)
    [2014-07-10 07:16] [PACMAN] upgraded phonon-qt4-gstreamer (4.7.1-1 -> 4.7.2-1)
    [2014-07-10 07:16] [PACMAN] upgraded libqzeitgeist (0.8.0-3 -> 0.8.0-4)
    [2014-07-10 07:16] [PACMAN] upgraded phonon-qt4 (4.7.1-2 -> 4.7.2-1)
    [2014-07-10 07:16] [PACMAN] upgraded kdelibs (4.13.1-3 -> 4.13.2-3)
    [2014-07-10 07:16] [PACMAN] upgraded gnupg (2.0.22-2 -> 2.0.25-1)
    [2014-07-10 07:16] [PACMAN] upgraded gpgme (1.4.3-1 -> 1.5.0-1)
    [2014-07-10 07:16] [PACMAN] upgraded qjson (0.8.1-2 -> 0.8.1-3)
    [2014-07-10 07:16] [PACMAN] upgraded kdepimlibs (4.13.1-1 -> 4.13.2-1)
    [2014-07-10 07:16] [PACMAN] upgraded xapian-core (1:1.2.17-1 -> 1:1.2.18-1)
    [2014-07-10 07:16] [PACMAN] upgraded libpng (1.6.10-1 -> 1.6.12-1)
    [2014-07-10 07:16] [PACMAN] upgraded pixman (0.32.4-1 -> 0.32.6-1)
    [2014-07-10 07:16] [PACMAN] upgraded libvdpau (0.7-1 -> 0.8-1)
    [2014-07-10 07:16] [PACMAN] upgraded fixesproto (5.0-2 -> 5.0-3)
    [2014-07-10 07:16] [PACMAN] upgraded damageproto (1.2.1-2 -> 1.2.1-3)
    [2014-07-10 07:16] [PACMAN] upgraded libxdamage (1.1.4-1 -> 1.1.4-2)
    [2014-07-10 07:16] [PACMAN] upgraded libdbus (1.8.2-1 -> 1.8.4-1)
    [2014-07-10 07:16] [PACMAN] upgraded dbus (1.8.2-1 -> 1.8.4-1)
    [2014-07-10 07:16] [PACMAN] upgraded kmod (17-1 -> 18-1)
    [2014-07-10 07:16] [PACMAN] upgraded hwids (20130915.1-1 -> 20140602-1)
    [2014-07-10 07:16] [PACMAN] upgraded libsystemd (212-3 -> 214-2)
    [2014-07-10 07:16] [PACMAN] upgraded pam (1.1.8-4 -> 1.1.8-5)
    [2014-07-10 07:16] [ALPM-SCRIPTLET] :: coredumps are no longer sent to the journal by default. To re-enable:
    [2014-07-10 07:16] [ALPM-SCRIPTLET] echo >/etc/sysctl.d/50-coredump.conf \
    [2014-07-10 07:16] [ALPM-SCRIPTLET] "kernel.core_pattern=|/usr/lib/systemd/systemd-coredump %p %u %g %s %t %e"
    [2014-07-10 07:16] [PACMAN] upgraded systemd (212-3 -> 214-2)
    [2014-07-10 07:16] [PACMAN] upgraded libffi (3.0.13-4 -> 3.1-2)
    [2014-07-10 07:16] [PACMAN] upgraded llvm-libs (3.4.1-2 -> 3.4.2-1)
    [2014-07-10 07:16] [PACMAN] upgraded mesa (10.1.4-1 -> 10.2.3-1)
    [2014-07-10 07:16] [PACMAN] upgraded libxdmcp (1.1.1-1 -> 1.1.1-2)
    [2014-07-10 07:16] [PACMAN] upgraded kbproto (1.0.6-1 -> 1.0.6-2)
    [2014-07-10 07:16] [PACMAN] upgraded libx11 (1.6.2-1 -> 1.6.2-2)
    [2014-07-10 07:16] [PACMAN] upgraded libxkbfile (1.0.8-1 -> 1.0.8-2)
    [2014-07-10 07:16] [PACMAN] upgraded xorg-xkbcomp (1.2.4-1 -> 1.2.4-2)
    [2014-07-10 07:16] [PACMAN] upgraded xorg-setxkbmap (1.3.0-1 -> 1.3.0-2)
    [2014-07-10 07:16] [PACMAN] upgraded xorg-fonts-encodings (1.0.4-3 -> 1.0.4-4)
    [2014-07-10 07:16] [PACMAN] upgraded xorg-bdftopcf (1.0.4-1 -> 1.0.4-2)
    [2014-07-10 07:16] [PACMAN] upgraded xorg-mkfontdir (1.0.7-1 -> 1.0.7-2)
    [2014-07-10 07:16] [PACMAN] upgraded xorg-font-util (1.3.0-1 -> 1.3.0-2)
    [2014-07-10 07:16] [PACMAN] upgraded xorg-font-utils (7.6-3 -> 7.6-4)
    [2014-07-10 07:17] [ALPM-SCRIPTLET] Updating font cache... done.
    [2014-07-10 07:17] [PACMAN] upgraded xorg-fonts-misc (1.0.1-2 -> 1.0.1-3)
    [2014-07-10 07:17] [PACMAN] upgraded xorg-server-common (1.15.1-1 -> 1.15.2-1)
    [2014-07-10 07:17] [PACMAN] upgraded xorg-server (1.15.1-1 -> 1.15.2-1)
    [2014-07-10 07:17] [PACMAN] upgraded nvidia-utils (337.19-1 -> 337.25-3)
    [2014-07-10 07:17] [PACMAN] upgraded nvidia-libgl (337.19-1 -> 337.25-3)
    [2014-07-10 07:17] [PACMAN] upgraded lzo2 (2.06-3 -> 2.08-1)
    [2014-07-10 07:17] [PACMAN] upgraded cairo (1.12.16-1 -> 1.12.16-2)
    [2014-07-10 07:17] [PACMAN] upgraded poppler (0.26.1-1 -> 0.26.2-1)
    [2014-07-10 07:17] [PACMAN] upgraded poppler-qt4 (0.26.1-1 -> 0.26.2-1)
    [2014-07-10 07:17] [PACMAN] upgraded libtasn1 (3.4-1 -> 3.6-1)
    [2014-07-10 07:17] [PACMAN] upgraded gnutls (3.3.2-1 -> 3.3.5-1)
    [2014-07-10 07:17] [PACMAN] upgraded libva (1.3.1-1 -> 1.3.1-2)
    [2014-07-10 07:17] [PACMAN] upgraded opencore-amr (0.1.3-1 -> 0.1.3-2)
    [2014-07-10 07:17] [PACMAN] installed libx264 (1:142.20140311-4)
    [2014-07-10 07:17] [PACMAN] upgraded xvidcore (1.3.2-3 -> 1.3.3-1)
    [2014-07-10 07:17] [PACMAN] upgraded x265 (1.0-1 -> 1.1-1)
    [2014-07-10 07:17] [PACMAN] upgraded ffmpeg (1:2.2.2-3 -> 1:2.2.4-2)
    [2014-07-10 07:17] [PACMAN] upgraded ebook-tools (0.2.2-1 -> 0.2.2-2)
    [2014-07-10 07:17] [PACMAN] upgraded kdegraphics-mobipocket (4.13.1-1 -> 4.13.2-1)
    [2014-07-10 07:17] [PACMAN] upgraded kfilemetadata (4.13.1-1 -> 4.13.2-1)
    [2014-07-10 07:17] [PACMAN] upgraded baloo (4.13.1-1 -> 4.13.2-1)
    [2014-07-10 07:17] [PACMAN] upgraded binutils (2.24-4 -> 2.24-6)
    [2014-07-10 07:17] [PACMAN] upgraded bluez (5.19-1 -> 5.21-2)
    [2014-07-10 07:17] [PACMAN] upgraded bluez-libs (5.19-1 -> 5.21-2)
    [2014-07-10 07:17] [PACMAN] upgraded ca-certificates-java (20140324-2 -> 20140324-3)
    [2014-07-10 07:17] [PACMAN] upgraded openssl (1.0.1.g-1 -> 1.0.1.h-1)
    [2014-07-10 07:17] [PACMAN] upgraded sqlite (3.8.4.3-2 -> 3.8.5-1)
    [2014-07-10 07:17] [PACMAN] upgraded python2 (2.7.6-3 -> 2.7.8-1)
    [2014-07-10 07:17] [PACMAN] upgraded python2-six (1.6.1-2 -> 1.7.3-1)
    [2014-07-10 07:17] [PACMAN] upgraded python2-beautifulsoup3 (3.2.1-2 -> 3.2.1-3)
    [2014-07-10 07:17] [PACMAN] upgraded libcl (1.1-3 -> 1.1-4)
    [2014-07-10 07:17] [PACMAN] upgraded imagemagick (6.8.9.1-2 -> 6.8.9.5-1)
    [2014-07-10 07:17] [PACMAN] upgraded libusb (1.0.18-1 -> 1.0.19-1)
    [2014-07-10 07:17] [PACMAN] upgraded libwebp (0.4.0-1 -> 0.4.0-2)
    [2014-07-10 07:17] [PACMAN] upgraded python2-pillow (2.4.0-1 -> 2.5.0-1)
    [2014-07-10 07:17] [PACMAN] upgraded libunrar (1:5.1.5-1 -> 1:5.1.6-1)
    [2014-07-10 07:17] [PACMAN] upgraded sip (4.15.5-2 -> 4.16.2-1)
    [2014-07-10 07:17] [PACMAN] upgraded python2-sip (4.15.5-2 -> 4.16.2-1)
    [2014-07-10 07:17] [PACMAN] upgraded pyqt4-common (4.10.4-2 -> 4.11.1-1)
    [2014-07-10 07:17] [PACMAN] upgraded python2-pyqt4 (4.10.4-2 -> 4.11.1-1)
    [2014-07-10 07:17] [PACMAN] upgraded calibre (1.38.0-1 -> 1.40.0-1)
    [2014-07-10 07:17] [PACMAN] upgraded cdrdao (1.2.3-6 -> 1.2.3-7)
    [2014-07-10 07:17] [PACMAN] upgraded libxft (2.3.1-2 -> 2.3.2-1)
    [2014-07-10 07:17] [PACMAN] upgraded harfbuzz (0.9.28-1 -> 0.9.29-1)
    [2014-07-10 07:17] [PACMAN] upgraded pango (1.36.3-2 -> 1.36.5-1)
    [2014-07-10 07:17] [PACMAN] upgraded compositeproto (0.4.2-2 -> 0.4.2-3)
    [2014-07-10 07:17] [PACMAN] upgraded libxcomposite (0.4.4-1 -> 0.4.4-2)
    [2014-07-10 07:17] [PACMAN] upgraded libcups (1.7.3-1 -> 1.7.3-4)
    [2014-07-10 07:17] [PACMAN] upgraded gdk-pixbuf2 (2.30.7-1 -> 2.30.8-1)
    [2014-07-10 07:17] [PACMAN] upgraded gtk-update-icon-cache (2.24.23-1 -> 2.24.24-1)
    [2014-07-10 07:17] [PACMAN] upgraded gtk2 (2.24.23-1 -> 2.24.24-1)
    [2014-07-10 07:17] [PACMAN] upgraded xdg-utils (1.1.0.git20140207-1 -> 1.1.0.git20140426-1)
    [2014-07-10 07:17] [PACMAN] upgraded flac (1.3.0-2 -> 1.3.0-3)
    [2014-07-10 07:17] [ALPM-SCRIPTLET] Updating font cache... done.
    [2014-07-10 07:17] [PACMAN] upgraded ttf-liberation (2.00.1-3 -> 2.00.1-4)
    [2014-07-10 07:17] [PACMAN] upgraded chromium (35.0.1916.114-1 -> 35.0.1916.153-1)
    [2014-07-10 07:17] [PACMAN] upgraded libcap-ng (0.7.3-1 -> 0.7.4-1)
    [2014-07-10 07:17] [PACMAN] upgraded talloc (2.1.0-2 -> 2.1.1-1)
    [2014-07-10 07:17] [PACMAN] upgraded libwbclient (4.1.7-1 -> 4.1.9-1)
    [2014-07-10 07:17] [PACMAN] upgraded cifs-utils (6.2-1 -> 6.3-2)
    [2014-07-10 07:17] [PACMAN] upgraded isl (0.12.2-1 -> 0.13-1)
    [2014-07-10 07:17] [PACMAN] upgraded cloog (0.18.1-2 -> 0.18.1-3)
    [2014-07-10 07:17] [PACMAN] upgraded clutter-gst (2.0.10-2 -> 2.0.12-1)
    [2014-07-10 07:17] [PACMAN] upgraded cogl (1.18.0-2 -> 1.18.2-1)
    [2014-07-10 07:17] [PACMAN] upgraded libirman (0.4.5-3 -> 0.4.5-4)
    [2014-07-10 07:17] [PACMAN] upgraded lirc-utils (1:0.9.0-71 -> 1:0.9.0-74)
    [2014-07-10 07:17] [PACMAN] upgraded x264 (1:142.20140311-1 -> 1:142.20140311-4)
    [2014-07-10 07:17] [PACMAN] upgraded smbclient (4.1.7-1 -> 4.1.9-1)
    [2014-07-10 07:17] [PACMAN] upgraded mplayer (37051-2 -> 37224-1)
    [2014-07-10 07:17] [PACMAN] upgraded mencoder (37051-2 -> 37224-1)
    [2014-07-10 07:17] [PACMAN] upgraded python2-cairo (1.10.0-1 -> 1.10.0-2)
    [2014-07-10 07:17] [PACMAN] upgraded pygtk (2.24.0-3 -> 2.24.0-4)
    [2014-07-10 07:17] [PACMAN] upgraded devede (3.23.0-1 -> 3.23.0-2)
    [2014-07-10 07:17] [PACMAN] upgraded dhcpcd (6.3.2-1 -> 6.4.0-1)
    [2014-07-10 07:17] [PACMAN] upgraded djvulibre (3.5.25.3-1 -> 3.5.25.3-2)
    [2014-07-10 07:17] [PACMAN] upgraded dmxproto (2.3.1-2 -> 2.3.1-3)
    [2014-07-10 07:17] [PACMAN] upgraded dnssec-anchors (20130320-1 -> 20140629-1)
    [2014-07-10 07:17] [PACMAN] upgraded docbook-xml (4.5-5 -> 4.5-6)
    [2014-07-10 07:17] [PACMAN] upgraded dvd+rw-tools (7.1-4 -> 7.1-5)
    [2014-07-10 07:17] [PACMAN] upgraded json-glib (1.0.0-1 -> 1.0.2-1)
    [2014-07-10 07:17] [PACMAN] installed libnm-glib (0.9.8.10-3)
    [2014-07-10 07:17] [PACMAN] upgraded libmm-glib (1.2.0-3 -> 1.2.0-4)
    [2014-07-10 07:17] [PACMAN] upgraded geoclue2 (2.1.4-1 -> 2.1.8-2)
    [2014-07-10 07:17] [PACMAN] upgraded harfbuzz-icu (0.9.28-1 -> 0.9.29-1)
    [2014-07-10 07:17] [PACMAN] upgraded webkitgtk2 (2.4.2-1 -> 2.4.3-2)
    [2014-07-10 07:17] [ALPM-SCRIPTLET] ==> If you are using extensions you should update the extensions with
    [2014-07-10 07:17] [ALPM-SCRIPTLET] ==> dwbem -u or dwbem -Nu
    [2014-07-10 07:17] [PACMAN] upgraded dwb (2014.03.07-1 -> 2014.03.07-2)
    [2014-07-10 07:17] [PACMAN] upgraded e2fsprogs (1.42.9-2 -> 1.42.10-1)
    [2014-07-10 07:17] [PACMAN] upgraded webkitgtk (2.4.2-1 -> 2.4.3-2)
    [2014-07-10 07:17] [PACMAN] upgraded gnome-online-accounts (3.12.2-1 -> 3.12.3-1)
    [2014-07-10 07:17] [PACMAN] upgraded liboauth (1.0.1-1 -> 1.0.3-1)
    [2014-07-10 07:17] [PACMAN] upgraded libgdata (0.15.0-1 -> 0.15.1-1)
    [2014-07-10 07:17] [PACMAN] upgraded evolution-data-server (3.12.2-1 -> 3.12.3-1)
    [2014-07-10 07:17] [PACMAN] upgraded folks (0.9.7-1 -> 0.9.7.1-1)
    [2014-07-10 07:17] [PACMAN] upgraded telepathy-farstream (0.6.0-1 -> 0.6.1-1)
    [2014-07-10 07:17] [PACMAN] upgraded telepathy-logger (0.8.0-1 -> 0.8.0-2)
    [2014-07-10 07:17] [PACMAN] upgraded empathy (3.12.2-1 -> 3.12.4-1)
    [2014-07-10 07:17] [PACMAN] upgraded ffmpeg-compat (1:0.10.12-2 -> 1:0.10.13-1)
    [2014-07-10 07:17] [PACMAN] upgraded file (5.18-1 -> 5.19-1)
    [2014-07-10 07:17] [ALPM] warning: /etc/group installed as /etc/group.pacnew
    [2014-07-10 07:17] [ALPM] warning: /etc/passwd installed as /etc/passwd.pacnew
    [2014-07-10 07:17] [ALPM] warning: /etc/shadow installed as /etc/shadow.pacnew
    [2014-07-10 07:17] [PACMAN] upgraded filesystem (2013.05-2 -> 2014.06-2)
    [2014-07-10 07:17] [PACMAN] upgraded filezilla (3.8.0-1 -> 3.8.1-1)
    [2014-07-10 07:17] [PACMAN] upgraded findutils (4.4.2-5 -> 4.4.2-6)
    [2014-07-10 07:17] [PACMAN] upgraded mozilla-common (1.4-3 -> 1.4-4)
    [2014-07-10 07:17] [PACMAN] upgraded firefox (29.0.1-2 -> 30.0-1)
    [2014-07-10 07:17] [PACMAN] upgraded flashplugin (11.2.202.359-1 -> 11.2.202.394-1)
    [2014-07-10 07:17] [PACMAN] upgraded freerdp (1.0.2-5 -> 1.0.2-6)
    [2014-07-10 07:17] [PACMAN] upgraded fuse-exfat (1.0.1-1 -> 1.0.1-2)
    [2014-07-10 07:17] [PACMAN] upgraded gavl (1.4.0-1 -> 1.4.0-2)
    [2014-07-10 07:17] [PACMAN] upgraded gc (7.4.0-3 -> 7.4.2-1)
    [2014-07-10 07:17] [PACMAN] upgraded gcc-multilib (4.9.0-3 -> 4.9.0-5)
    [2014-07-10 07:17] [PACMAN] upgraded geoclue (0.12.99-1 -> 0.12.99-2)
    [2014-07-10 07:17] [PACMAN] upgraded jre7-openjdk-headless (7.u55_2.4.7-1 -> 7.u60_2.5.0-3)
    [2014-07-10 07:17] [PACMAN] upgraded jre7-openjdk (7.u55_2.4.7-1 -> 7.u60_2.5.0-3)
    [2014-07-10 07:17] [PACMAN] upgraded geogebra (4.4.35.0-1 -> 4.4.37.0-1)
    [2014-07-10 07:17] [PACMAN] upgraded geoip-database (20140304-1 -> 20140604-1)
    [2014-07-10 07:17] [PACMAN] upgraded gettext (0.18.3.2-1 -> 0.19.1-1)
    [2014-07-10 07:17] [PACMAN] upgraded git (1.9.3-1 -> 2.0.1-1)
    [2014-07-10 07:17] [PACMAN] upgraded glu (9.0.0-2 -> 9.0.0-3)
    [2014-07-10 07:17] [PACMAN] upgraded gmime (2.6.20-1 -> 2.6.20-2)
    [2014-07-10 07:17] [PACMAN] upgraded gnome-calculator (3.12.1-1 -> 3.12.3-1)
    [2014-07-10 07:17] [PACMAN] upgraded rarian (0.8.1-3 -> 0.8.1-4)
    [2014-07-10 07:17] [PACMAN] upgraded gnome-doc-utils (0.20.10-1 -> 0.20.10-2)
    [2014-07-10 07:17] [PACMAN] upgraded gnome-icon-theme-symbolic (3.12.0-1 -> 3.12.0-2)
    [2014-07-10 07:17] [PACMAN] upgraded gnome-icon-theme (3.12.0-1 -> 3.12.0-2)
    [2014-07-10 07:17] [PACMAN] upgraded gnome-menus (3.10.1-1 -> 3.10.1-2)
    [2014-07-10 07:17] [PACMAN] upgraded gnome-mime-data (2.18.0-6 -> 2.18.0-7)
    [2014-07-10 07:17] [PACMAN] upgraded vte-common (0.36.2-1 -> 0.36.3-1)
    [2014-07-10 07:17] [PACMAN] upgraded vte3 (0.36.2-1 -> 0.36.3-1)
    [2014-07-10 07:17] [PACMAN] upgraded gnome-terminal (3.12.2-1 -> 3.12.3-1)
    [2014-07-10 07:17] [PACMAN] upgraded gnome-user-docs (3.12.1-1 -> 3.12.2-1)
    [2014-07-10 07:17] [PACMAN] upgraded gnome-user-share (3.10.2-2 -> 3.10.2-3)
    [2014-07-10 07:17] [PACMAN] upgraded goocanvas1 (1.0.0-2 -> 1.0.0-3)
    [2014-07-10 07:17] [PACMAN] upgraded gparted (0.18.0-1 -> 0.19.0-1)
    [2014-07-10 07:17] [PACMAN] upgraded grep (2.19-1 -> 2.20-1)
    [2014-07-10 07:17] [PACMAN] upgraded grub (1:2.02.beta2-3 -> 1:2.02.beta2-4)
    [2014-07-10 07:17] [PACMAN] upgraded gst-libav (1.2.4-1 -> 1.2.4-2)
    [2014-07-10 07:17] [PACMAN] upgraded gstreamer0.10-python (0.10.22-1 -> 0.10.22-2)
    [2014-07-10 07:17] [PACMAN] upgraded pangox-compat (0.0.2-1 -> 0.0.2-2)
    [2014-07-10 07:17] [PACMAN] upgraded gtkglext (1.2.0-9 -> 1.2.0-10)
    [2014-07-10 07:17] [PACMAN] upgraded hardinfo (0.5.1-5 -> 0.5.1-6)
    [2014-07-10 07:17] [PACMAN] upgraded hunspell-en (7.1-2 -> 7.1-3)
    [2014-07-10 07:17] [PACMAN] upgraded hyphen (2.8.6-1 -> 2.8.7-2)
    [2014-07-10 07:17] [PACMAN] upgraded i2c-tools (3.1.0-5 -> 3.1.1-1)
    [2014-07-10 07:17] [PACMAN] upgraded xcb-util-keysyms (0.3.9-1 -> 0.3.9-2)
    [2014-07-10 07:17] [PACMAN] upgraded i3-wm (4.7.2-1 -> 4.8-3)
    [2014-07-10 07:17] [PACMAN] upgraded perl-xml-parser (2.41-4 -> 2.41-5)
    [2014-07-10 07:17] [PACMAN] upgraded perl-xml-simple (2.20-1 -> 2.20-2)
    [2014-07-10 07:17] [PACMAN] upgraded icon-naming-utils (0.8.90-2 -> 0.8.90-3)
    [2014-07-10 07:17] [PACMAN] upgraded imlib2 (1.4.6-1 -> 1.4.6-3)
    [2014-07-10 07:17] [PACMAN] upgraded poppler-glib (0.26.1-1 -> 0.26.2-1)
    [2014-07-10 07:17] [PACMAN] upgraded inkscape (0.48.4-15 -> 0.48.5-2)
    [2014-07-10 07:17] [PACMAN] upgraded inputproto (2.3-1 -> 2.3.1-1)
    [2014-07-10 07:17] [PACMAN] upgraded intel-tbb (4.2_20140122-1 -> 4.2_20140601-1)
    [2014-07-10 07:17] [PACMAN] upgraded intltool (0.50.2-1 -> 0.50.2-2)
    [2014-07-10 07:17] [PACMAN] upgraded jdk7-openjdk (7.u55_2.4.7-1 -> 7.u60_2.5.0-3)
    [2014-07-10 07:17] [PACMAN] upgraded libkactivities4 (4.13.1-3 -> 4.13.2-1)
    [2014-07-10 07:17] [PACMAN] upgraded kactivities4 (4.13.1-3 -> 4.13.2-1)
    [2014-07-10 07:17] [PACMAN] upgraded oxygen-icons (4.13.1-1 -> 4.13.2-1)
    [2014-07-10 07:17] [PACMAN] upgraded kdebase-runtime (4.13.1-3 -> 4.13.2-1)
    [2014-07-10 07:17] [PACMAN] upgraded ladspa (1.13-4 -> 1.13-5)
    [2014-07-10 07:17] [PACMAN] upgraded leafpad (0.8.18.1-3 -> 0.8.18.1-4)
    [2014-07-10 07:17] [PACMAN] upgraded lib32-alsa-lib (1.0.27.2-1 -> 1.0.28-1)
    [2014-07-10 07:17] [PACMAN] upgraded lib32-alsa-plugins (1.0.27-1 -> 1.0.28-1)
    [2014-07-10 07:17] [PACMAN] upgraded lib32-bzip2 (1.0.6-1 -> 1.0.6-2)
    [2014-07-10 07:17] [PACMAN] upgraded lib32-gettext (0.18.3.2-1 -> 0.19.1-1)
    [2014-07-10 07:17] [PACMAN] upgraded lib32-harfbuzz (0.9.26-2 -> 0.9.29-1)
    [2014-07-10 07:17] [PACMAN] upgraded lib32-libdbus (1.8.0-1 -> 1.8.4-1)
    [2014-07-10 07:17] [PACMAN] upgraded lib32-libffi (3.0.13-1 -> 3.1-1)
    [2014-07-10 07:17] [PACMAN] upgraded lib32-libgpg-error (1.12-1 -> 1.13-1)
    [2014-07-10 07:17] [PACMAN] upgraded libice (1.0.8-2 -> 1.0.9-1)
    [2014-07-10 07:17] [PACMAN] upgraded lib32-libice (1.0.8-1 -> 1.0.9-1)
    [2014-07-10 07:17] [PACMAN] upgraded lib32-libpng (1.6.10-1 -> 1.6.12-1)
    [2014-07-10 07:17] [PACMAN] upgraded lib32-libvdpau (0.7-2 -> 0.8-1)
    [2014-07-10 07:17] [PACMAN] upgraded lib32-llvm-libs (3.4.1-1 -> 3.4.2-1)
    [2014-07-10 07:17] [PACMAN] upgraded lib32-systemd (212-1 -> 214-1)
    [2014-07-10 07:17] [PACMAN] upgraded lib32-mesa (10.1.4-1 -> 10.2.3-1)
    [2014-07-10 07:17] [PACMAN] installed freeglut (2.8.1-1)
    [2014-07-10 07:17] [PACMAN] upgraded mesa-demos (8.1.0-2 -> 8.2.0-1)
    [2014-07-10 07:17] [PACMAN] upgraded lib32-mesa-demos (8.1.0-3 -> 8.2.0-1)
    [2014-07-10 07:17] [PACMAN] upgraded lib32-nvidia-utils (337.19-1 -> 337.25-2)
    [2014-07-10 07:17] [PACMAN] upgraded lib32-nvidia-libgl (337.19-1 -> 337.25-2)
    [2014-07-10 07:17] [PACMAN] upgraded lib32-openssl (1.0.1.g-1 -> 1.0.1.h-1)
    [2014-07-10 07:17] [PACMAN] upgraded lib32-sqlite (3.8.4.3-1 -> 3.8.5-1)
    [2014-07-10 07:17] [PACMAN] upgraded lib32-util-linux (2.24.1-1 -> 2.24.2-1)
    [2014-07-10 07:17] [PACMAN] upgraded libatasmart (0.19-2 -> 0.19-3)
    [2014-07-10 07:17] [PACMAN] installed librevenge (0.0.1-2)
    [2014-07-10 07:17] [PACMAN] upgraded libwpd (0.9.9-1 -> 0.10.0-1)
    [2014-07-10 07:17] [PACMAN] upgraded libcdr (0.0.16-2 -> 0.1.0-1)
    [2014-07-10 07:17] [PACMAN] upgraded libcroco (0.6.8-1 -> 0.6.8-2)
    [2014-07-10 07:17] [PACMAN] upgraded libdaemon (0.14-2 -> 0.14-3)
    [2014-07-10 07:17] [PACMAN] upgraded libetonyek (0.0.4-1 -> 0.1.1-1)
    [2014-07-10 07:17] [PACMAN] upgraded libevdev (1.2.1-1 -> 1.2.2-1)
    [2014-07-10 07:17] [PACMAN] upgraded libgme (0.6.0-2 -> 0.6.0-3)
    [2014-07-10 07:17] [PACMAN] upgraded libgnomecanvas (2.30.3-2 -> 2.30.3-3)
    [2014-07-10 07:17] [PACMAN] upgraded libgnomeui (2.24.5-1 -> 2.24.5-2)
    [2014-07-10 07:17] [PACMAN] upgraded libinput (0.1.0-1 -> 0.2.0-1)
    [2014-07-10 07:17] [PACMAN] upgraded libmusicbrainz5 (5.0.1-1 -> 5.0.1-2)
    [2014-07-10 07:17] [PACMAN] upgraded libkcddb (4.13.1-1 -> 4.13.2-1)
    [2014-07-10 07:17] [PACMAN] upgraded libmicrohttpd (0.9.35-1 -> 0.9.37-1)
    [2014-07-10 07:17] [PACMAN] upgraded libmms (0.6.2-1 -> 0.6.4-1)
    [2014-07-10 07:17] [PACMAN] upgraded libmpcdec (1.2.6-3 -> 1.2.6-4)
    [2014-07-10 07:17] [PACMAN] upgraded libmpeg2 (0.5.1-4 -> 0.5.1-5)
    [2014-07-10 07:17] [PACMAN] upgraded libmspub (0.0.6-2 -> 0.1.1-1)
    [2014-07-10 07:17] [PACMAN] upgraded libnfs (1.9.3-1 -> 1.9.4-1)
    [2014-07-10 07:17] [PACMAN] upgraded libodfgen (0.0.4-1 -> 0.1.1-1)
    [2014-07-10 07:17] [PACMAN] upgraded libproxy (0.4.11-2 -> 0.4.11-4)
    [2014-07-10 07:17] [PACMAN] upgraded libreoffice-en-GB (4.2.4-1 -> 4.2.5-1)
    [2014-07-10 07:18] [PACMAN] upgraded libreoffice-common (4.2.4-1 -> 4.2.5-1)
    [2014-07-10 07:18] [PACMAN] upgraded libreoffice-base (4.2.4-1 -> 4.2.5-1)
    [2014-07-10 07:18] [PACMAN] upgraded lpsolve (5.5.2.0-2 -> 5.5.2.0-3)
    [2014-07-10 07:18] [PACMAN] upgraded libreoffice-calc (4.2.4-1 -> 4.2.5-1)
    [2014-07-10 07:18] [PACMAN] upgraded libreoffice-draw (4.2.4-1 -> 4.2.5-1)
    [2014-07-10 07:18] [PACMAN] upgraded libreoffice-impress (4.2.4-1 -> 4.2.5-1)
    [2014-07-10 07:18] [PACMAN] upgraded libreoffice-math (4.2.4-1 -> 4.2.5-1)
    [2014-07-10 07:18] [PACMAN] upgraded postgresql-libs (9.3.4-1 -> 9.3.4-2)
    [2014-07-10 07:18] [PACMAN] upgraded libreoffice-postgresql-connector (4.2.4-1 -> 4.2.5-1)
    [2014-07-10 07:18] [PACMAN] upgraded zip (3.0-3 -> 3.0-4)
    [2014-07-10 07:18] [PACMAN] upgraded libreoffice-sdk (4.2.4-1 -> 4.2.5-1)
    [2014-07-10 07:18] [PACMAN] upgraded libreoffice-sdk-doc (4.2.4-1 -> 4.2.5-1)
    [2014-07-10 07:18] [PACMAN] upgraded libreoffice-writer (4.2.4-1 -> 4.2.5-1)
    [2014-07-10 07:18] [PACMAN] upgraded libsigc++ (2.3.1-1 -> 2.3.1-2)
    [2014-07-10 07:18] [PACMAN] upgraded libspectre (0.2.7-1 -> 0.2.7-2)
    [2014-07-10 07:18] [PACMAN] upgraded libspiro (20071029-3 -> 1:0.2-1)
    [2014-07-10 07:18] [PACMAN] upgraded libtiger (0.3.4-3 -> 0.3.4-4)
    [2014-07-10 07:18] [PACMAN] upgraded libtracker-sparql (1.0.1-1 -> 1.0.1-2)
    [2014-07-10 07:18] [PACMAN] upgraded libwpg (0.2.2-2 -> 0.3.0-1)
    [2014-07-10 07:18] [PACMAN] upgraded libvisio (0.0.31-3 -> 0.1.0-1)
    [2014-07-10 07:18] [PACMAN] upgraded libvisual (0.4.0-4 -> 0.4.0-5)
    [2014-07-10 07:18] [PACMAN] upgraded libwps (0.2.9-1 -> 0.3.0-1)
    [2014-07-10 07:18] [PACMAN] upgraded xfconf (4.10.0-3 -> 4.10.0-4)
    [2014-07-10 07:18] [PACMAN] upgraded libxfce4ui (4.10.0-1 -> 4.10.0-2)
    [2014-07-10 07:18] [PACMAN] upgraded libxklavier (5.3-1 -> 5.4-1)
    [2014-07-10 07:18] [PACMAN] upgraded licenses (20130203-1 -> 20140629-1)
    [2014-07-10 07:18] [PACMAN] upgraded linux-firmware (20140316.dec41bc-1 -> 20140603.a4f3bc0-1)
    [2014-07-10 07:18] [ALPM-SCRIPTLET] >>> Updating module dependencies. Please wait ...
    [2014-07-10 07:18] [ALPM-SCRIPTLET] >>> Generating initial ramdisk, using mkinitcpio. Please wait...
    [2014-07-10 07:18] [ALPM-SCRIPTLET] ==> Building image from preset: /etc/mkinitcpio.d/linux.preset: 'default'
    [2014-07-10 07:18] [ALPM-SCRIPTLET] -> -k /boot/vmlinuz-linux -c /etc/mkinitcpio.conf -g /boot/initramfs-linux.img
    [2014-07-10 07:18] [ALPM-SCRIPTLET] ==> Starting build: 3.15.4-1-ARCH
    [2014-07-10 07:18] [ALPM-SCRIPTLET] -> Running build hook: [base]
    [2014-07-10 07:18] [ALPM-SCRIPTLET] -> Running build hook: [udev]
    [2014-07-10 07:18] [ALPM-SCRIPTLET] -> Running build hook: [autodetect]
    [2014-07-10 07:18] [ALPM-SCRIPTLET] -> Running build hook: [modconf]
    [2014-07-10 07:18] [ALPM-SCRIPTLET] -> Running build hook: [block]
    [2014-07-10 07:18] [ALPM-SCRIPTLET] -> Running build hook: [filesystems]
    [2014-07-10 07:18] [ALPM-SCRIPTLET] -> Running build hook: [keyboard]
    [2014-07-10 07:18] [ALPM-SCRIPTLET] ==> Generating module dependencies
    [2014-07-10 07:18] [ALPM-SCRIPTLET] ==> Creating gzip initcpio image: /boot/initramfs-linux.img
    [2014-07-10 07:18] [ALPM-SCRIPTLET] ==> Image generation successful
    [2014-07-10 07:18] [ALPM-SCRIPTLET] ==> Building image from preset: /etc/mkinitcpio.d/linux.preset: 'fallback'
    [2014-07-10 07:18] [ALPM-SCRIPTLET] -> -k /boot/vmlinuz-linux -c /etc/mkinitcpio.conf -g /boot/initramfs-linux-fallback.img -S autodetect
    [2014-07-10 07:18] [ALPM-SCRIPTLET] ==> Starting build: 3.15.4-1-ARCH
    [2014-07-10 07:18] [ALPM-SCRIPTLET] -> Running build hook: [base]
    [2014-07-10 07:18] [ALPM-SCRIPTLET] -> Running build hook: [udev]
    [2014-07-10 07:18] [ALPM-SCRIPTLET] -> Running build hook: [modconf]
    [2014-07-10 07:18] [ALPM-SCRIPTLET] -> Running build hook: [block]
    [2014-07-10 07:18] [ALPM-SCRIPTLET] ==> WARNING: Possibly missing firmware for module: aic94xx
    [2014-07-10 07:18] [ALPM-SCRIPTLET] ==> WARNING: Possibly missing firmware for module: smsmdtv
    [2014-07-10 07:18] [ALPM-SCRIPTLET] -> Running build hook: [filesystems]
    [2014-07-10 07:18] [ALPM-SCRIPTLET] -> Running build hook: [keyboard]
    [2014-07-10 07:18] [ALPM-SCRIPTLET] ==> Generating module dependencies
    [2014-07-10 07:18] [ALPM-SCRIPTLET] ==> Creating gzip initcpio image: /boot/initramfs-linux-fallback.img
    [2014-07-10 07:18] [ALPM-SCRIPTLET] ==> Image generation successful
    [2014-07-10 07:18] [PACMAN] upgraded linux (3.14.4-1 -> 3.15.4-1)
    [2014-07-10 07:18] [PACMAN] upgraded man-pages (3.67-1 -> 3.69-1)
    [2014-07-10 07:18] [PACMAN] upgraded mcpp (2.7.2-4 -> 2.7.2-5)
    [2014-07-10 07:18] [PACMAN] upgraded mdadm (3.3-2 -> 3.3.1-2)
    [2014-07-10 07:18] [PACMAN] upgraded mkvtoolnix-cli (6.9.1-1 -> 7.0.0-1)
    [2014-07-10 07:18] [PACMAN] upgraded mpfr (3.1.2.p8-1 -> 3.1.2.p10-1)
    [2014-07-10 07:18] [PACMAN] upgraded nano (2.2.6-2 -> 2.2.6-3)
    [2014-07-10 07:18] [PACMAN] upgraded netctl (1.7-1 -> 1.8-1)
    [2014-07-10 07:18] [PACMAN] upgraded networkmanager (0.9.8.10-1 -> 0.9.8.10-3)
    [2014-07-10 07:18] [PACMAN] upgraded nspr (4.10.5-1 -> 4.10.6-1)
    [2014-07-10 07:18] [PACMAN] upgraded ntp (4.2.7.p441-1 -> 4.2.7.p446-1)
    [2014-07-10 07:18] [PACMAN] upgraded nvidia (337.19-1 -> 337.25-4)
    [2014-07-10 07:18] [PACMAN] upgraded xine-lib (1.2.5-1 -> 1.2.6-1)
    [2014-07-10 07:18] [PACMAN] upgraded opencv (2.4.8-2 -> 2.4.9-1)
    [2014-07-10 07:18] [ALPM] warning: /etc/pacman.d/mirrorlist installed as /etc/pacman.d/mirrorlist.pacnew
    [2014-07-10 07:18] [PACMAN] upgraded pacman-mirrorlist (20140405-1 -> 20140706-1)
    [2014-07-10 07:18] [PACMAN] upgraded phonon-qt5-gstreamer (4.7.1-1 -> 4.7.2-1)
    [2014-07-10 07:18] [PACMAN] upgraded pkg-config (0.28-1 -> 0.28-2)
    [2014-07-10 07:18] [PACMAN] upgraded pm-quirks (0.20100619-3 -> 0.20100619-4)
    [2014-07-10 07:18] [PACMAN] upgraded protobuf (2.5.0-3 -> 2.5.0-4)
    [2014-07-10 07:18] [PACMAN] upgraded pulseaudio-alsa (2-2 -> 2-3)
    [2014-07-10 07:18] [PACMAN] upgraded pygoocanvas (0.14.1-5 -> 0.14.1-6)
    [2014-07-10 07:18] [PACMAN] upgraded pyorbit (2.24.0-4 -> 2.24.0-5)
    [2014-07-10 07:18] [PACMAN] upgraded python-setuptools (3.6-1 -> 1:5.4.1-1)
    [2014-07-10 07:18] [PACMAN] upgraded python2-gnomecanvas (2.28.1-8 -> 2.28.1-9)
    [2014-07-10 07:18] [PACMAN] upgraded python2-bonobo (2.28.1-8 -> 2.28.1-9)
    [2014-07-10 07:18] [PACMAN] upgraded python2-cffi (0.8.2-4 -> 0.8.6-1)
    [2014-07-10 07:18] [PACMAN] upgraded python2-docutils (0.11-2 -> 0.12-1)
    [2014-07-10 07:18] [PACMAN] upgraded python2-gconf (2.28.1-8 -> 2.28.1-9)
    [2014-07-10 07:18] [PACMAN] upgraded python2-gnomevfs (2.28.1-8 -> 2.28.1-9)
    [2014-07-10 07:18] [PACMAN] upgraded python2-libgnome (2.28.1-8 -> 2.28.1-9)
    [2014-07-10 07:18] [PACMAN] upgraded python2-mako (0.9.1-2 -> 1.0.0-1)
    [2014-07-10 07:18] [PACMAN] upgraded python2-setuptools (3.6-1 -> 1:5.4.1-1)
    [2014-07-10 07:18] [PACMAN] upgraded xcb-util (0.3.9-1 -> 0.3.9-2)
    [2014-07-10 07:18] [PACMAN] upgraded xcb-util-image (0.3.9-1 -> 0.3.9-2)
    [2014-07-10 07:18] [PACMAN] upgraded qt5-base (5.3.0-3 -> 5.3.1-1)
    [2014-07-10 07:18] [PACMAN] upgraded qt5-xmlpatterns (5.3.0-3 -> 5.3.1-1)
    [2014-07-10 07:18] [PACMAN] upgraded qt5-declarative (5.3.0-3 -> 5.3.1-1)
    [2014-07-10 07:18] [PACMAN] upgraded qt5-location (5.3.0-3 -> 5.3.1-1)
    [2014-07-10 07:18] [PACMAN] upgraded qt5-script (5.3.0-3 -> 5.3.1-1)
    [2014-07-10 07:18] [PACMAN] upgraded qt5-sensors (5.3.0-3 -> 5.3.1-1)
    [2014-07-10 07:18] [PACMAN] upgraded qt5-webkit (5.3.0-3 -> 5.3.1-1)
    [2014-07-10 07:18] [PACMAN] upgraded randrproto (1.4.0-1 -> 1.4.0-2)
    [2014-07-10 07:18] [PACMAN] upgraded recordproto (1.14.2-1 -> 1.14.2-2)
    [2014-07-10 07:18] [PACMAN] upgraded remmina (1.0.0-11 -> 1.0.0-12)
    [2014-07-10 07:18] [PACMAN] upgraded renderproto (0.11.1-2 -> 0.11.1-3)
    [2014-07-10 07:18] [PACMAN] upgraded s-nail (14.6.4-1 -> 14.7.1-1)
    [2014-07-10 07:18] [PACMAN] upgraded samba (4.1.7-1 -> 4.1.9-1)
    [2014-07-10 07:18] [PACMAN] upgraded scrnsaverproto (1.2.2-1 -> 1.2.2-2)
    [2014-07-10 07:18] [PACMAN] upgraded sdl_mixer (1.2.12-3 -> 1.2.12-4)
    [2014-07-10 07:18] [PACMAN] upgraded sg3_utils (1.38-1 -> 1.39-1)
    [2014-07-10 07:18] [PACMAN] upgraded shntool (3.0.10-2 -> 3.0.10-3)
    [2014-07-10 07:18] [PACMAN] installed lib32-json-c (0.12-1)
    [2014-07-10 07:18] [PACMAN] installed lib32-libasyncns (0.8-7)
    [2014-07-10 07:18] [PACMAN] installed lib32-libcap (2.24-1)
    [2014-07-10 07:18] [PACMAN] installed lib32-libxtst (1.2.2-1)
    [2014-07-10 07:18] [PACMAN] installed lib32-libogg (1.3.1-1)
    [2014-07-10 07:18] [PACMAN] installed lib32-flac (1.3.0-1)
    [2014-07-10 07:18] [PACMAN] installed lib32-libvorbis (1.3.4-1)
    [2014-07-10 07:18] [PACMAN] installed lib32-libsndfile (1.0.25-3)
    [2014-07-10 07:18] [PACMAN] installed lib32-libpulse (5.0-1)
    [2014-07-10 07:18] [ALPM-SCRIPTLET] Important update note: Since Skype 4.3, only PulseAudio is supported.
    [2014-07-10 07:18] [ALPM-SCRIPTLET] That means you NEED a working PulseAudio setup to use Skype for voice chatting.
    [2014-07-10 07:18] [ALPM-SCRIPTLET] If you get distorted sound in skype, try adding PULSE_LATENCY_MSEC=60 to your
    [2014-07-10 07:18] [ALPM-SCRIPTLET] env before starting skype. Something like 'export PULSE_LATENCY_MSEC=60' in .bashrc, for example.
    [2014-07-10 07:18] [PACMAN] upgraded skype (4.2.0.13-4 -> 4.3.0.37-3)
    [2014-07-10 07:18] [PACMAN] upgraded slim (1.3.6-4 -> 1.3.6-5)
    [2014-07-10 07:18] [PACMAN] upgraded sound-theme-freedesktop (0.8-1 -> 0.8-2)
    [2014-07-10 07:18] [PACMAN] upgraded swig (3.0.0-1 -> 3.0.2-1)
    [2014-07-10 07:18] [PACMAN] upgraded sysfsutils (2.1.0-8 -> 2.1.0-9)
    [2014-07-10 07:18] [PACMAN] upgraded systemd-sysvcompat (212-3 -> 214-2)
    [2014-07-10 07:18] [PACMAN] upgraded thunar-volman (0.8.0-1 -> 0.8.0-2)
    [2014-07-10 07:18] [PACMAN] upgraded thunderbird (24.5.0-1 -> 24.6.0-1)
    [2014-07-10 07:18] [PACMAN] upgraded tracker (1.0.1-1 -> 1.0.1-2)
    [2014-07-10 07:18] [PACMAN] upgraded tzdata (2014c-1 -> 2014e-1)
    [2014-07-10 07:18] [PACMAN] upgraded unrar (1:5.1.5-1 -> 1:5.1.6-1)
    [2014-07-10 07:18] [PACMAN] upgraded unzip (6.0-6 -> 6.0-7)
    [2014-07-10 07:18] [PACMAN] upgraded vi (1:050325-3 -> 1:050325-4)
    [2014-07-10 07:18] [PACMAN] upgraded vim-runtime (7.4.307-3 -> 7.4.335-4)
    [2014-07-10 07:18] [PACMAN] upgraded vim (7.4.307-3 -> 7.4.335-4)
    [2014-07-10 07:18] [PACMAN] upgraded vlc (2.1.4-2 -> 2.1.5-1)
    [2014-07-10 07:18] [PACMAN] upgraded vorbis-tools (1.4.0-3 -> 1.4.0-4)
    [2014-07-10 07:18] [PACMAN] upgraded webrtc-audio-processing (0.1-1 -> 0.1-2)
    [2014-07-10 07:18] [PACMAN] upgraded wine (1.7.19-3 -> 1.7.21-1)
    [2014-07-10 07:18] [PACMAN] upgraded xbmc (13.0-5 -> 13.1-3)
    [2014-07-10 07:18] [PACMAN] upgraded xcb-util-renderutil (0.3.8-1 -> 0.3.9-1)
    [2014-07-10 07:18] [PACMAN] upgraded xdg-user-dirs-gtk (0.10-1 -> 0.10-2)
    [2014-07-10 07:18] [PACMAN] upgraded xf86-video-modesetting (0.8.1-2 -> 0.9.0-1)
    [2014-07-10 07:18] [PACMAN] upgraded xf86dgaproto (2.1-2 -> 2.1-3)
    [2014-07-10 07:18] [PACMAN] upgraded xf86vidmodeproto (2.3.1-2 -> 2.3.1-3)
    [2014-07-10 07:18] [PACMAN] upgraded xfsprogs (3.1.11-2 -> 3.2.0-1)
    [2014-07-10 07:18] [PACMAN] upgraded xineramaproto (1.2.1-2 -> 1.2.1-3)
    [2014-07-10 07:18] [PACMAN] upgraded youtube-dl (2014.05.19-1 -> 2014.06.26-1)
    Does anyone know what's going on?
    Is there any more information I can provide that would assist diagnosis?

    Hi, thanks for the reply
    /etc/libreoffice/bootstraprc  looks like this:
    [ErrorReport]
    ErrorReportPort=80
    ErrorReportServer=report.libreoffice.org
    [Bootstrap]
    InstallMode=<installmode>
    ProductKey=LibreOffice 4.2
    UserInstallation=$SYSUSERCONFIG/libreoffice/4
    Is this of any use?
    EDIT: through finding more applications that don't work I'm beiginning to suspect it is something to do with GTK. QT apps seem unaffected whereas GTK apps are all a bit upset. I can, for example, access my home directory just fine in dino (qt) and ranger (ncurses).
    EDIT 2: It appears only gtk2 apps are affected. gtk3 apps seem OK
    EDIT 3: I never found a solution, I reformatted the partition and started again (it was only my home partition). I am now back to using ext4.
    Last edited by gav989 (2014-08-19 11:09:53)

  • How does Java file I/O move files?

    I'm working support for an integration platform, and there's a problem at a customer that seems to crop up once in a blue moon, yet still all to often. Its a bit difficult to track down, because they are using an old piece of software that is not officially supported anymore, but the problem still needs to be solved and I could use some help to either confirm or dismiss my suspicion of what might be the cause of it.
    What happens is this....
    Their system places a file in a folder, and the file is /supposedly/ fully created, and then just moved to the folder. Then an adapter program takes the file, puts it on a messaging queue, and after that is successful, it moves the file into a backup directory.
    Now, what has happened is that sometimes, the files that end up being sent are incomplete. Either the writing application messed up, or the adapter somehow went crazy. But more puzzling is that I've observed that the files have been correctly sent, but the file that ended up in the backup-directory was empty. It is not possible to send an empty file through the platform, since there's transformation logic that handles it. Those parts I completely trust, but I need to verify if it might indeed be the adapter, or the customer's own systems that messes up the message.
    So the question really boils down to, how does the java file-I/O method for moving a file work? Does it copy it bitwise, or does it call the system's move-command? Because if it copies it bitwise, it might mean it reads the data at the exact moment the file is created but not yet filled, and then doesn't check again as it writes it to the storage, and then just deletes the file. If it calls the system's move command, the system wouldn't be able to move a file that is being written, and something else is more likely the problem.
    The machine is a windows 2000 server, sp4, and the java being used is jdk1.3.1_03.
    Rewriting the adapter is not an option, and it will hopefully be replaced in the near future (as in, within a year...) whenever the customer deems it can budget for the work. The adapter is not officially supported by us, but the platform is, and I need to pin-point the problem.

    So the question really boils down to, how does the
    java file-I/O method for moving a file work? Does it
    copy it bitwise, or does it call the system's
    move-command? It could be either one. Both are available, so it depends what the programmer for that tool decided to use.
    Without more details, it's impossible to be sure what the probem is, but a couple of general possibilities that fit what you've described pop to mind:
    * The copy/move/send step is happening before the file being written is flushed or closed. This might be because an exception in the writing code is causing the flush/close to be skipped entirely.
    * The copy/move/send is being called too soon.
    * The step that's reading the file after its been copied/moved/sent is ocurring before the file is completely there.

  • How to call a html file in a java file

    how to call a html file inside a java file ?

    Hopeless. Are you by any chance a rare gas? You seem completely inert. LOL You totally pwned him there :rolls eyes:
    well, no, I think he's looking for something to this degree:
    in HTML, there is a mailto: command that makes the system default handled way to email emails open up. He's looking for a command thats very nice and opens a html file in the system default browser.
    So, Dick, Runtime.exec would work execpt that he needs a way to find the default system browser to call exec on, AND he has to know how to pass html file locations to the executable via command line arguments
    He just didnt try to phrase it at all :P

  • Access jsp's application object from an .java file?

    Hi,
    I hava a .jsp page and an import statement to a .java file. How can I access the application object in this .java file?
    I want to make an initialization function that I want to be called in every .jsp of the WEB application and to store this function in a .java file.

    The only way to get a hold of the application object would be to pass it to java code as a parameter to a method.
    ie public class Util{
    public void initialiseJSPPage(ServletContext application){
      // do stuff in ServletContext
    }and then in the JSP call it via
    <% Util.initialiseJSPPage(application); %>
    You could manually include this code on every JSP.
    A better alternative is that in web.xml you can configure an automatic include (See JSP.3.3.5)
    What is it you are trying to accomplish by doing this?
    Would a Filter be a more appropriate tool in this case? That would let you run java code before selected requests are handled.
    Cheers,
    evnafets

Maybe you are looking for

  • Ati drivers no longer work after upgrade

    I was trying to mount a vfat partition the other day, to copy files from a friends USB drive. It would not mount no matter what I did. I had found out that for some reason, the last kernel that I updated to did not have the proper character set enabl

  • Open_cursors and session_cached_cursors!!

    Hi, all. I have a 2 node RAC database (10.2.0.2.0) on windows2003 EE SP1. Recently, I am getting warnings related to "library cache lock" and "cursor: pin S wait on X" wait event. The recommendation from ADDM findigs is as follows. -- increase open_c

  • Can't get events to flow from Java to VB

    I've seen some past topics relating to this but none gives a concrete example of making it work. I've created a bean with a single method, a fw properties and one event. I've run the packager and regestered everything in VB. The bean has no GUI. I've

  • How to feed a cluster into the mathscript?

    Hi all,   I am trying to feed a cluster into the mathscript. I found that if the name of the cluster element does not have any space or special characters, it works pretty well. But it doesn't run if the name of the cluster elements have any special

  • SAP Archive process

    Hi all, How to archive the data from SAP when the data have a delete tag? can any one please explain the archive process in SAP? we have to delete production order data? Thanks in advance. Regards, veera Edited by: Veerab on Oct 3, 2011 9:52 AM