# foxmail-password-recovery
**Repository Path**: huangkl1024/foxmail-password-recovery
## Basic Information
- **Project Name**: foxmail-password-recovery
- **Description**: Foxmail 密码解密
- **Primary Language**: Unknown
- **License**: MIT
- **Default Branch**: master
- **Homepage**: None
- **GVP Project**: No
## Statistics
- **Stars**: 0
- **Forks**: 1
- **Created**: 2022-06-25
- **Last Updated**: 2025-03-17
## Categories & Tags
**Categories**: Uncategorized
**Tags**: None
## README
> 本项目基于 [Foxmail-Password-Recovery](https://github.com/StarZHF/Foxmail-Password-Recovery) 移植
### :space_invader: Foxmail 测试版本
Foxmail 7.2.23.116
### :running: 本地运行
通过 git 克隆项目
```bash
git clone https://github.com/OutOfMemoryEx/foxmail-password-recovery
```
使用 idea 打开项目
找到 `FoxmailPasswordRecoveryTest` 类,修改 `foxmailInstalledPath` 变量值为自己电脑 foxmail 安装路径
运行 `FoxmailPasswordRecoveryTest#decrypt()` 测试方法
## :eyes: Usage
```java
package com.huangkailong.util;
import java.util.List;
import org.junit.jupiter.api.Test;
class FoxmailPasswordRecoveryTest {
@Test
void decrypt() {
String foxmailInstalledPath = "D:\\Program Files\\Foxmail";
FoxmailPasswordRecovery foxmailPasswordRecovery =
new FoxmailPasswordRecovery(foxmailInstalledPath);
List foxmailPasswordInfos = foxmailPasswordRecovery.decrypt();
System.out.println(foxmailPasswordInfos);
}
}
```
## :warning: 开源许可证
查看 LICENSE.txt 了解更多信息.