Với một lớp java WinRegistry.java sẽ giúp chúng ta đọc/thêm/xóa registry trong window. Các bạn có thể download và xem hướng dẫn trong bài này.
Ví dụ đọc một registry trong window: HKEY_CURRENT_USER\\Volatile Environment\\USERPROFILE (Thu mục user)
public static void main(String[] args) throws Exception { int hkey = WinRegistry.HKEY_CURRENT_USER; String registryPath = "Volatile Environment"; String key = "USERPROFILE"; String userProfile = WinRegistry.readString(hkey, registryPath, key); System.out.println(userProfile); }
WinRegistry sẽ có các hàm create, delete, write các bạn tự tham khảo thêm.
|