你好请在这个问题上帮忙:
叫做班级
CreateHtml CreateHtml = new CreateHtml ();
String GetHtml = CreateHtml.main ();
System.out.println (GetHtml;
CreateHtml = null;
GetHtml = null;
System.gc ();
也就是说,该类生成html代码,打印然后销毁。据我了解,必须清除内存?操作峰值负载内存高达300 mb(转换为base64中的图像)并保持继续,CreateHtml = null; GetHtml = null; System.gc();不会影响任何事情。告诉我,我做错了什么?如何在这种情况下正确清除内存?提前谢谢!