Here I am going to share one of the best useful website for formatting JSON online https://formatjson.com Format JSON is a web based tool to format, view and edit JSON data. It shows your data in editable tree-view. Format XML is a web based tool to format, view and edit XML data. It shows your […]
Month: July 2019
How to enable Hyper-V in Windows 10
Hyper-V is a virtualization technology from Microsoft Corporation available on Windows 10 Pro, Enterprise, and Education. Windows 10 allows you to create one or multiple virtual machines to install and run different OS on the same physical hardware. Verifying Hyper-V enabled or not through command prompt Open command prompt, by pressing windows+R, then enter cmd […]
How to check Java Heap Memory in windows system
Find Minimum Heap Memory Open windows command prompt and then enter the following command. javaw -XX:+PrintFlagsFinal | find “InitialHeapSize” Ouput Find Maximum Heap Memory Open windows command prompt and then enter the following command. javaw -XX:+PrintFlagsFinal | find “MaxHeapSize” Output Find ThreadStackSize , HeapSizePerGCThread Memory Open windows command prompt and then enter the following command. […]