how to Capture https with fiddler, in java

前端 未结 4 2030
春和景丽
春和景丽 2020-11-28 01:58

I am running the following java program in the Eclipse IDE:

import java.net.*;
import java.io.*;

public class HH
{
    public static void main(String[] arg         


        
4条回答
  •  我在风中等你
    2020-11-28 02:23

    I found that I also required the following java command line options

    -Dhttps.proxyPort=8888 
    -Dhttps.proxyHost=127.0.0.1
    

提交回复
热议问题