zoukankan      html  css  js  c++  java
  • ubuntu系统AndroidStudio改动内存大小

    位于android-studio/bin文件夹下的studio64.vmoptions和studio.vmoptions文件。

    把Xms,Xmx,-XX:MaxPermSize。-XX:ReservedCodeCacheSize分别改动大一些。依据电脑内存大小分配大一点就能够了。

    1.studio64.vmoptions文件

    -Xms512m
    -Xmx2048m
    -XX:MaxPermSize=1024m
    -XX:ReservedCodeCacheSize=1024m
    -ea
    -Dsun.io.useCanonCaches=false
    -Djava.net.preferIPv4Stack=true
    -Djna.nosys=true
    -Djna.boot.library.path=


    -Djna.debug_load=true
    -Djna.debug_load.jna=true
    -Djsse.enableSNIExtension=false
    -XX:+UseCodeCacheFlushing
    -XX:+UseConcMarkSweepGC
    -XX:SoftRefLRUPolicyMSPerMB=50
    -Dawt.useSystemAAFontSettings=lcd


    2.studio.vmoptions文件

    -server
    -Xms518m
    -Xmx2048m
    -XX:MaxPermSize=1024m
    -XX:ReservedCodeCacheSize=1024m
    -ea
    -Dsun.io.useCanonCaches=false
    -Djava.net.preferIPv4Stack=true
    -Djna.nosys=true
    -Djna.boot.library.path=


    -Djna.debug_load=true
    -Djna.debug_load.jna=true
    -Djsse.enableSNIExtension=false
    -XX:+UseCodeCacheFlushing
    -XX:+UseConcMarkSweepGC
    -XX:SoftRefLRUPolicyMSPerMB=50
    -Dawt.useSystemAAFontSettings=lcd

    3.改动完后在AndroidStudio中运行File/Invalidate Cashes / Restart, 在弹出的对话框中点击“Invalidate and Restart”重新启动就可以。

  • 相关阅读:
    Leetcode: Summary Ranges
    Leetcode: Kth Smallest Element in a BST
    Leetcode: Basic Calculator II
    Leetcode: Basic Calculator
    Leetcode: Count Complete Tree Nodes
    Leetcode: Implement Stack using Queues
    Leetcode: Maximal Square
    Leetcode: Contains Duplicate III
    Leetcode: Invert Binary Tree
    Leetcode: The Skyline Problem
  • 原文地址:https://www.cnblogs.com/yfceshi/p/6940063.html
Copyright © 2011-2022 走看看