Java application not release memory

I have java 1.3 or 1.4, my application start correctly.
I have set heap a 4Mb but process java begin consume ram, initialy start with 7MB after 12-15 hour the process have above 60% system mem (128Mb).
After 16-18 hour kernel kill process.
I have Ubuntu distribution
Thanks

it is difficult to address this question without having a knowledge of the application. Here are some suggestions:
(1) run the application from within Java Studio in debug mode. This will give you an idea of what is absorbing the memory. The idea here is to be able to watch your data structures grow. Any tool that allows you to do this will help. See http://developers.sun.com/prodtech/javatools/jsenterprise/index.html
for Java Studio Enterprise.
(2) the chances are very good that your application is creating some sort of Collection (Set, Hashtable, Vector, ...) and slowly adding to it. This is very common and a common cause of "memory leak".
(3) The garbage collector in Java frees memory as objects go out of scope. If the objects never go out of scope, they are never garbage collected.
(4) If you have these such objects or collections that must always be accessable, consider adding some caching mechanism (putting the data to disk) whereby keeping your datastructures smaller.
(5)Also, when you say "set the heap" I am assuming you used the -Xmx and -Xms command line options. If not, look into these.

Similar Messages

  • Garbage Collection not releasing memory properly

    Hello, In my web application memory is not releasing properly, after some point of time application throw out of memory error, we are using tomcat5, jdk5, my heap size is half of the RAM.Garbage Collection not releasing memory properly.

    sabre150 wrote:
    punter wrote:
    georgemc wrote:
    Yep. Couldn't be a problem with your code, it must be that garbage collection doesn't work and nobody else noticed. Raise a bug with Sun.Are you serious ?You need to replace your sarcasm detector.I have blowed my sarcasm meter and limping in the blindness !!!! :(

  • PS Touch Android does not release memory when closed.

    I have to force closure with Task Manager on my Samsung Note 2 running JB 4.1. Why and when will it be fixed?

    Hi Ignacio,
    Sorry for the lack of information - I had typed more complete description, but had trouble posting it.
    The app is installed on a Samsung Galaxy Note 2 phone that is running Jellybean 4.1.1.
    The only way I can see to exit the application is by using the "back" soft key under the screen on the right. Some apps have an "exit" choice under the "menu" soft key, but that key is not active with PSTouch.
    I see the same issue with Google Chrome. The menu key is active with this app, but it does not have an "exit" choice.
    With both these apps, I have to go to the "Active Apps" tab of the Task Manager to release memory.
    There is one difference with PS Touch. Google Chrome always starts the same way whether or not I release it's memory. With PS Touch, if I release memory after closing with the back key, the next time I start it I get an initial royal blue screen with the PS Touch icon in the middle followed by a second screen with a menu in the middle titled "New Project From". If I exit at that point, it takes two presses of the back key to first close the menu and then exit the program and return to a home screen. If I do not release memory, the next time I start PS Touch, it goes directly to the second screen, but without the "New Project From" menu.
    I hope this gives you the information you need.
                      Pete

  • Why does Java Application not working with Macromedia Flash 5 or MX?

    Why does Java Application not working with Macromedia Flash 5 or MX?

    Who says they don't?
    Although I don't know much about those I'd think they should be able to talk to Java Aps using Sockets or request Servlets ...
    Spieler

  • How to add images into a java application (not applet)

    Hello,
    I am new in java programming. I would like to know how to add images into a java application (not an applet). If i could get an standard example about how to add a image to a java application, I would apreciated it. Any help will be greatly apreciated.
    Thank you,
    Oscar

    Your' better off looking in the java 2d forum.
    package images;
    import java.awt.*;
    import java.awt.image.*;
    import java.io.FileInputStream;
    import javax.imageio.ImageIO;
    import javax.swing.*;
    /** * LogoImage is a class that is used to load images into the program */
    public class LogoImage extends JPanel {
         private BufferedImage image;
         private int factor = 1; /** Creates a new instance of ImagePanel */
         public LogoImage() {
              this(new Dimension(600, 50));
         public LogoImage(Dimension sz) {
              //setBackground(Color.green);      
              setPreferredSize(sz);
         public void setImage(BufferedImage im) {
              image = im;
              if (im != null) {
                   setPreferredSize(
                        new Dimension(image.getWidth(), image.getHeight()));
              } else {
                   setPreferredSize(new Dimension(200, 200));
         public void setImageSizeFactor(int factor) {
              this.factor = factor;
         public void paintComponent(Graphics g) {
              super.paintComponent(g);
              //paint background 
              Graphics2D g2D = (Graphics2D) g;
              //Draw image at its natural size first. 
              if (image != null) {
                   g2D.drawImage(image, null, 0, 0);
         public static LogoImage createImage(String filename) { /* Stream the logo gif file into an image object */
              LogoImage logoImage = new LogoImage();
              BufferedImage image;
              try {
                   FileInputStream fileInput =
                        new FileInputStream("images/" + filename);
                   image = ImageIO.read(fileInput);
                   logoImage =
                        new LogoImage(
                             new Dimension(image.getWidth(), image.getHeight()));
                   fileInput.close();
                   logoImage.setImage(image);
              } catch (Exception e) {
                   System.err.println(e);
              return logoImage;
         public static void main(String[] args) {
              JFrame jf = new JFrame("testImage");
              Container cp = jf.getContentPane();
              cp.add(LogoImage.createImage("logo.gif"), BorderLayout.CENTER);
              jf.setVisible(true);
              jf.pack();
    }Now you can use this class anywhere in your pgram to add a JPanel

  • GC not releasing memory-Out of Memory Excp.

    WL5.1,SP8,JDK1.2.2,Unix.
    We have our application running on the above mentioned Env.
    We have a memory allocation of 1024MB for the heap. We have three instances of
    weblogic server running inside a cluster.
    The server calls GC[0] regularly. Once the 100% of the memory is used the server
    calls GC[1] and releases memory upto 50% to 60%
    appx. But this release of memory keeps reducing and at one point of time it is
    not able to release any of its memory.
    We tried to get some thread dumps by doing kill -3 and that din't help us much.
    we see this kind of behaviour in all the three weblogic instances.
    Our application was running quiet a long time and we din't experience any problem
    of memory issue before this occured.
    Is their anything that I can do to see what objects are their inside the JVM.
    I don't have any performance tool installed.
    Does weblogic console can give some information on the heap used.
    Is their any java utility program that i can use to find the inside's of JVM
    Thanks
    Krish.

    You can find out why 'locale' tag fails by looking at the
    ServletException.getRootCause() (in your error jsp page, if
    you have one).
    Krish <[email protected]\> wrote:
    I had the same problem recently and I have some information prior to the server
    going out of memory.
    Our application uses JSP for presentation.Prior to the server getting out of memory
    we faced a problem in one of our JSP being corrupted. The client never got the
    full JSP on the screen. We believe that the JSP was corrupted and the server servert
    the corrupted file. Then after investigation we used the "touch" command and touched
    the file and then it recompiled and the client was able to view the full page.
    This problem of serving corrupted JSP code started the same day the out of memery
    problem occured. I would like to know that does this corruption leave some thing
    in the memory that never got cleaned up by GC[1].
    Following is the exception thrown when the client try to acess the JSP.
    javax.servlet.ServletException: runtime failure in custom tag 'locale'
         at java.lang.Throwable.fillInStackTrace(Native Method)
         at java.lang.Throwable.fillInStackTrace(Compiled Code)
         at java.lang.Throwable.<init>(Compiled Code)
         at java.lang.Exception.<init>(Compiled Code)
         at javax.servlet.ServletException.<init>(Compiled Code)
    The custom tag locale just transalates the string into the local language with
    some attibutes passes. Almost all JSP's use this tag. So i don't think there is
    a problem in tag.
    All in need to know is that if their is some kind of exception in the JSP compilation
    will the objects stay in the memory and never get cleaned up.
    Thanks in advance
    Krish.
    "Mike Reiche" <[email protected]> wrote:
    JProbe will provide information about java objects in the JVM heap.
    Your application was running for a long time, then all of a sudden it
    started
    running out of memory? Look closely at the last code change you made.
    Mike
    "Krish" <[email protected]> wrote:
    WL5.1,SP8,JDK1.2.2,Unix.
    We have our application running on the above mentioned Env.
    We have a memory allocation of 1024MB for the heap. We have three instances
    of
    weblogic server running inside a cluster.
    The server calls GC[0] regularly. Once the 100% of the memory is used
    the server
    calls GC[1] and releases memory upto 50% to 60%
    appx. But this release of memory keeps reducing and at one point oftime
    it is
    not able to release any of its memory.
    We tried to get some thread dumps by doing kill -3 and that din't help
    us much.
    we see this kind of behaviour in all the three weblogic instances.
    Our application was running quiet a long time and we din't experience
    any problem
    of memory issue before this occured.
    Is their anything that I can do to see what objects are their inside
    the JVM.
    I don't have any performance tool installed.
    Does weblogic console can give some information on the heap used.
    Is their any java utility program that i can use to find the inside's
    of JVM
    Thanks
    Krish.
    Dimitri

  • AS Java applications not starting after patching from 2004s SPS10 to SPS11

    Hi folks,
    after patching our NetWeaver 2004s from SPS10 to SPS11 and the Kernel from 7.00.83.0 to 7.00.95.0, the applications on the AS Java do not start up automatically any more.
    Under the following URLs, the same error is shown:
    http://<fully qualified host name>:51000/
    http://<fully qualified host name>:51000/nwa
    http://<fully qualified host name>:51000/sap/monitoring/SystemInfo
    http://<fully qualified host name>:51000/useradmin/
    http://<fully qualified host name>:51000/wsnavigator
    http://<fully qualified host name>:51000/uddiclient
    503   Service Unavailable
    SAP J2EE Engine/7.00
    Application stopped.
    Details: You have requested an application that is currently stopped
    http://<fully qualified host name>:51000/webdynpro/welcome/Welcome.jsp
    itself works, the two links Content Administrator and Web Dynpro Console both lead to the same 503 error described above
    On http://<fully qualified host name>:51000/irj, the error message is different:
    com.sap.engine.services.deploy.container.ApplicationInManualStartUpException:
    Application sap.com/com.sap.portal.fpn.accessservice cannot be started because is in MANUAL start-up mode..
    Exception id: 09:33_09/05/07_0003_102709250
    See the details for the exception ID in the log file
    In std_server0.out we have the following entries, right after the list of all services that were started:
    ServiceManager started for 39904 ms.
    Framework started for 46720 ms.
    SAP J2EE Engine Version 7.00   PatchLevel is running!
    PatchLevel January 31, 2007 18:37 GMT
    May 9, 2007 9:40:19 AM  com.sap.portal.prt.sapj2ee.error [SAPEngine_Application_Thread[impl:3]_3] Fatal:
    The last line with com.sap.portal.prt.sapj2ee.error is listed another 131 times, and there is also the following message:
    ### Excluding compile:  com.sapportals.portal.prt.jndisupport.util.AbstractHierarchicalContext::lookup
    We can connect to the system using Visual Administrator. Under Server->Services->Deploy, most applications are not running. It is possible to start a few applications manually, others however do not start showing different exceptions.
    We have AS ABAP and AS Java installed, as well as BI, DI, EP and EPC. AS ABAP seems to be running fine.
    We have also noticed the following deviations in JSPM:
    BC_FES_IGS is Release 7.00 SP Level 7.0
    EP_BUILDT is Release 7.00 SP Level 10.0
    SAP_BUILDT is Release 7.00 SP Level 0.0
    All other components except for the Kernel are Release 7.00 SP Level 11.0 or 11.2
    What could be wrong, and what can we do to solve it?
    Best regards,
    Robert Schulte

    Thanks for your response, usha rani
    1. We already tried that, unfortunately, it does not help
    2. We checked the kernel version thoroughly after you suggested it, everything seems to be fine. We had a Unicode kernel before, and we still have one.
    3. safemode is already set to NO
    4. J2EE's default.trace is full of exceptions, but none of them is pointing me into a helpful direction.
    Perhaps the exceptions mean more to someone else:
    java.lang.Exception: Exception loading and instanciating sub-manager:
    com.sap.caf.km.repositorymanager.CAFSecurityManager
    (java.lang.ClassNotFoundException: com.sap.caf.km.repositorymanager.CAFSecurityManager)
    com.sapportals.wcm.repository.runtime.CmConfigurationProvider#
    sap.com/irj#com.sapportals.wcm.repository.runtime.CmConfigurationProvider.Component
    <SetRoomIdForDiscussionObjects> will not be available.
    Failed to load class
    <com.sap.netweaver.coll.room.impl.filter.DiscussionSetRoomIdPropertyFilterManager>
    #J2EE_GUEST#0####1e820b50fe4111db8e780013724175b4#SAPEngine_Application_Thread[impl:3]_22
    ##0#0#Error##Plain###
    java.lang.ClassNotFoundException:
    com.sap.netweaver.coll.room.impl.filter.DiscussionSetRoomIdPropertyFilterManager
    com.sap.portal.prt.runtime.broker#sap.com/irj#
    com.sap.portal.prt.runtime.broker#J2EE_GUEST#0####
    1e820b50fe4111db8e780013724175b4#SAPEngine_Application_Thread[impl:3]_22##0#0#
    Error#1#/System/Server#Java###
    [PortalServiceItem.startServices] service initialisation failed:
    tc.eu.odi.conn.uwl|OdiBridgeService
    [EXCEPTION]
    {0}#1#com.sapportals.portal.prt.core.broker.PortalServiceInstantiationException:
    Could not instantiate implementation class com.sap.tc.eu.odi.conn.uwl.OdiBridgeService
    of Portal Service tc.eu.odi.conn.uwl|OdiBridgeService because: could not load the service
    com.sap.engine.services.deploy.container.ApplicationInManualStartUpException:
    Application sap.com/com.sap.portal.fpn.accessservice cannot be started
    because is in MANUAL start-up mode.
    There are many more entries in default.trace.

  • Dw.sap processes do not release memory on Suse SL9

    Hello,
    We have an ecc6 Ehp4 system running on ;
    One Central instance ; Hp-ux ia64
    6 Linux Dialog Instances ; Linux SUSE SLES9/X86_64 64BIT
    More than 30 Gb of physical memory have been assigned to each Linux application servers, but
    we are facing memory bottlenecks. after analysys, it turns out that some sap processes dw.sap
    do not release the memory.
    At the sap level, the DIA or BTC process is not running anymore.
    At the OS level the corresponding dw.sap process still uses big chunk of memory
    p01adm   10674  2.9 45.4% 20081372 14955448 ?   S    Oct03  77:58  |   \_ dw.sapP01_D01 pf=/sapmnt/P01/profile/P01_D01_aor3p01a1
    p01adm   20839  6.4 48.5% 20091644 15992276 ?   S    Oct04 121:43  |   \_ dw.sapP01_D01 pf=/sapmnt/P01/profile/P01_D01_aor3p01a1
    p01adm   25379  5.8 47.6% 20085096 15670868 ?   S    Oct04 106:47  |   \_ dw.sapP01_D01 pf=/sapmnt/P01/profile/P01_D01_aor3p01a1
    p01adm   29367  6.1 44.7% 20086804 14735952 ?   S    Oct04 110:44  |   \_ dw.sapP01_D01 pf=/sapmnt/P01/profile/P01_D01_aor3p01a1
    p01adm    1326  3.8 41.6% 20078600 13703268 ?   S    Oct04  66:53  |   \_ dw.sapP01_D01 pf=/sapmnt/P01/profile/P01_D01_aor3p01a1
    p01adm   21643  6.3 42.3% 20087888 13951496 ?   S    Oct04  98:53  |   \_ dw.sapP01_D01
    I had a look at SAP note 706071, but it doesn't corespond to our issue, anyone has any idea ?
    thank you
    Regards
    Raoul

    > * 6 Linux Dialog Instances ; Linux SUSE SLES9/X86_64 64BIT
    You're aware that SLES 9 is out of support since August 2011?
    Note 936887 - End of maintenance for Linux distributions
    > More than 30 Gb of physical memory have been assigned to each Linux application servers, but
    > we are facing memory bottlenecks. after analysys, it turns out that some sap processes dw.sap
    > do not release the memory.
    A SAP system uses shared memory, it's allocated on system start and not released until the system is stopped.
    If you run out of memory I would suggest that you check your memory configuration.
    > At the sap level, the DIA or BTC process is not running anymore.
    > At the OS level the corresponding dw.sap process still uses big chunk of memory
    They are attached to the shared memory segment, this is not exlusive memory.
    > I had a look at SAP note 706071, but it doesn't corespond to our issue, anyone has any idea ?
    Usually it's not a problem if the memory keeps being allocated if the system is properly configured. Shared memory disclaiming is available on Linux but it's not supported on your operating system.
    Note 724140 - Extended memory, release for operating system
    I would suggest that you first check your memory parameters, execute on an application server as user <sid>adm:
    sappfpar pf=/sapmnt/<SID>/profile/<instance_profile> check
    and post the output.
    Markus

  • SQL Server not releasing memory

    Hello,
    I have created one stored procedure, which inserts data into 1 table.
    It inserts around 1 million records at a time using XML input.
    Problem is with SQL server memory I think. When I run this stored procedure and check the performance in the morning when server is not so busy, it finishes with less than 10 seconds.\
    However, if I continuously test this stored procedure multiple times, it gives huge variation in performance.
    Also, I call this stored procedure from C# front and there I have made sure that I am disposing Connection object every time.
    After few runs, I have to restart my server computer as it doesn't allow me to run any of the query on that server.
    So my question is :
    What is that which occupies whole server memory?
    Is there any thing which I can write in stored procedure to release memory once it is done?
    Please assist me on this.
    Thank you,
    Mittal.

    Hello,
    I have created one stored procedure, which inserts data into 1 table.
    It inserts around 1 million records at a time using XML input.
    Problem is with SQL server memory I think. When I run this stored procedure and check the performance in the morning when server is not so busy, it finishes with less than 10 seconds.\
    However, if I continuously test this stored procedure multiple times, it gives huge variation in performance.
    Also, I call this stored procedure from C# front and there I have made sure that I am disposing Connection object every time.
    After few runs, I have to restart my server computer as it doesn't allow me to run any of the query on that server.
    So my question is :
    What is that which occupies whole server memory?
    Is there any thing which I can write in stored procedure to release memory once it is done?
    Please assist me on this.
    Thank you,
    Mittal.
    >> 1. What is that which occupies whole server memory?
    Probably your application or the other application, but this need to be checked and not guess! Your machine execute hundreds if not hundreds of thousands applications on the same time! most of them are services that you do not see any
    GUI. The SQL Server itself might execute hundreds if not hundreds of thousands transactions and these might interfere one another (lock tables or rows, use the same resources and so on).
    * as a first test you should try to execute the query using a more reliable application like the SSMS. I recommend to try execute the query throw the SSMS several times and check the behavior.
    >> 2. Is there any thing which I can write in stored procedure to release memory once it is done?
    There are several option to free memory that used by SQL Server, but do you really need it?!? This is probably not the solution for your case. in the best option it will only give you a workaround.
    * SQL Server do not use more resources that you let it (configure it). If you are using SQL EXPRESS than you have some limitations regarding the resources (for example memory and CPU and database size...).
    Make sure that you configure the SQL Server not to use to much resources, so that other applications like the operating system will have what they need! There is no logic in restart the machine if the only
    problem is with specific application (unless you have problems like memory leak which in rare cases can not be treat otherwise)
    http://mrbool.com/how-to-clean-up-memory-sql-server/29242
    https://msdn.microsoft.com/en-us/library/ms178067.aspx?f=255&MSPPError=-2147217396
    ** start monitor the SQL Server resources, locks and waits
    https://technet.microsoft.com/en-us/library/aa213039(v=sql.80).aspx
    http://www.brentozar.com/sql/locking-and-blocking-in-sql-server/
    *** Give us more information instead of stories :-)
    Post codes that you use, post DDL+DML and so on.
      Ronen Ariely
     [Personal Site]    [Blog]    [Facebook]

  • Java "Application not found"

    Hi,
    I wonder of you can help me please, I'm new here and looking for an answer to a problem with my Java files.
    Perhaps I should start a new thread for the new question? Please advise me...
    'Problem' is:
    When I try to open the 'Java' icon on the 'controll panel' page, it says 'Application not found' !? :(
    I have tried re-installing Java but it still says 'Application not found'.
    (There is a plain box on the control panel, where the Java sign should be, but nothing else.)
    Also, when I try to use the BT speed tester, it tells me that 'Java is not installed/enabled on your P.C.'
    I am pretty sure I have ticked the right boxes on 'internet options', (under 'Tools',) but this doesn't work and even when I restart it says: 'restart required'.

    Thank you for your answer,
    I have, as you suggest, already tried removing all Java programmes and then uploading the latest version, that's probably why I'm in such a mess now.
    After I thought I had removed all version that were in my programme files, I attempted to upload the latest version, switching off the fire-wall first.
    But when I checked if it was working OK, it wasn't and I have been going round in a circle for hours re-loading etc.
    Plus I got the same message every time from the BT speedtester, which said 'you do not have java applets or they are not enabled' or something similar, but I did tick the 'enable' box in 'Internet Options' and ticked ''enable scripting' in the Internet Options / Security tag. But, try as I might, could not get the latest JRE files to load up and work right.
    Java script does seem to be working, although the Registry file is missing, but I had to download an earlier version to get it to work, (J2SE Runtime Environment 5.0 update 7. I think maybe one of the 'problems' is not being able to remove one Java programme which was on the computer since June, (Java(TM) 6 update 21.)
    I have tried to remove it several times but can't. ( I do have the 'administrator' rights.)
    I tried removing Java(TM) 6 update 21 again but i will not uninstall, although J2SE RE 5 update 7 has been removed now, I still can't get Java working and it's NOT showing in my programmes list at all, although Java(TM) 6 update 21 is showing in Control Panel programmes list!
    I usually get help from one of my Son's who are both in I.T. but both really busy. I have spent nearly two days now, trying to get Java working properly without much success.
    I am in a 'pickle', I don't know how to reinstate the Java Registry file for starters :( HELP!

  • Photoshop does not release memory after closing document.

    When I close a large document Photoshop does not release the memory. If I open another document the program is slow and not resposive. If I close out of Photoshop and restart it then load the other document it is quick and responsive again.

    A bit late to the party here but this issue is still live and I can't find anything else on the forum similar to it (apologies if there is).
    Photoshop does not seem to re-use memory it just keep allocating new right up to the limit before the prog crashes (same applies to Fireworks) so any batch/script processing of more than a handful of files is impossible.
    I am Photoshop via Creative Cloud (so I am always updated to your latest release), Windows 7 64k with 8Mb memory and am using Norton Intenet Security 20.3.1.22 which is updated daily.

  • Premiere Pro CS5 Mac 10.6.5 not releasing memory

    I have a Mac Pro running 10.6.5 Mac OS, 16GB Ram that I just installed today (had 8GB).  I opened up a rather large 11 minute PPro project.  I rendered it out.  Noticed that the Used Memory was getting larger, up to about 10GB where it leveled off for the remainder of the render.  After the render was done, the used memory stayed at 10GB.  I exited PPro, and it stayed 10GB.  Seems like it's not releasing the memory back to available or am I not understanding how either the Mac OS works with regards to memory or perhaps PPro?

    Yes, that appears to be the problem. I disconnected my secondary monitor (which does have a different vertical resolution) and the eyedropper appears to function properly.
    Okay, so now I know the cause of the issue. However, disconnecting and reconnecting monitors is not an acceptable workflow. Apparently this problem affects quite a few Premiere Pro CS5 Mac users with dual monitors since you referred to it as a know issue with all versions of Mac OS. Do you know if there is an update (not an upgrade) for Premiere Pro CS5 to address this?  
    Thanks.

  • CS4 32 Bit Not Releasing Memory

    Photoshop CS4 does not seem to release memory until I close the software. As an example I will open a D3x image file and maybe work on 3 layers of the image and at this point Photoshop is using up to 3GB of system memory.
    I then take this file flatten it and reduce it down to around 1333px and in Task Manager Photoshop is still using up 3GB of system memory. Only after about 5-10 minutes does it then drop down to 1.5 GB but keep in mind I only have a file that's about 2.4 MB in size open.
    Could this be due to the fact that I am running the 32-bit version of CS4 under a 64 bit OS? Any other ideas why Photoshop could be doing this?

    Chris
    I was wondering if you could help me. I have Photoshop CS4 and it works great after a fresh boot but hours later it annoyingly slower. I have to reboot to enjoy it again. Do you have any suggestions? I have Defragged, run spybot and cleared memory and nothing seems to make any difference.I was wondering if it had something to do with Memory and how it used or leadked. Thanks, Steve

  • After Effects 2014 not releasing memory

    Reposting this issue...
    The latest AE does not release RAM on Yosemite. Have installed Memory Freer app which does release it, but this is a little annoying and an issue from an older version I thought was fixed?
    We are on Mac Pro 5,1, 32gb RAM.

    What is the state of the Reduce Cache Size When System Is Low On Memory preference?
    See this page for details of that preference:
    After Effects CS6 (11.0.2) update

  • Java Application not rocognized 3110c

    I downloaded a dictionary from the internet with jar extension.
    upon trying to run it, message appeared saying " Application not recognized"
    could you please elaborate the different types of java platforms and which one is supported o my phone Nokia 3110c, and how to identify the supported one ...
    Thanks in Advance

    http://www.forum.nokia.com/devices/3110_classic
    MIDP 2.0
    CLDC 1.1
    JSR 135 Mobile Media API
    JSR 172 Web Services API
    JSR 177 Security and Trust Services API
    JSR 184 Mobile 3D Graphics API
    JSR 185 JTWI
    JSR 205 Wireless Messaging API
    JSR 226 Scalable 2D Vector Graphics API
    JSR 75 FileConnection and PIM API
    JSR 82 Bluetooth API
    Nokia UI API

Maybe you are looking for

  • Dll for NI 6008 in teststand

    Hi, since 2 days I have been struggling to find a dll or lib which I can use without any problems for controlling NI USB 6008 card. I am not sure if it is possible to control usb from teststand. All I could find was: - NIDAQmx.lib file. Which when I

  • Deploy 2010 Timer Job to 2013

    I've inherited an environment that has a handful of custom solutions including two timer jobs.  I have installed these solutions in my SP 2013 test environment and although they are deployed, they are not showing in the job definitions.  I fully expe

  • Showing Title and date/time info in exported file

    I am trying to export a group of photos into a file to then compress and e mail. How do I get the title and date/time info for each photo to export as well and be a part of the file?

  • Cannot open Adobe Reader documents

    Help! I'm on FireFox and cannot find the edit button as described on the page for Mozilla users. I'm not sure whether this is the correct forum because I feel entirely lost. If this is not the correct forum, please point me toward it. Thanks!

  • Can SS9 coexist with SS8 on the same box?

    Hello, First off, congratulations on the SS9 release! I'm about to try it out, but I can't make sense of some what's said in the release notes. "If you have Forte Developer 6 software, Sun ONE Studio 7 software, Sun ONE Studio 8 software, or Sun Stud