maven单元测试设置代理
摘要:背景 环境需要设置代理才能够访问外部网络,如果只是运行java程序来访问网络,我们可以通过java jar test.jar DproxyHost=proxy_ip DproxyPort=proxy_port,但如果是java的maven项目中,单元测试需要访问网络,只执行mvn test则会导致单
阅读全文
【LeetCode】476. Number Complement (java实现)
摘要:原题链接 "https://leetcode.com/problems/number complement/" 原题 Given a positive integer, output its complement number. The complement strategy is to flip
阅读全文