()
| 732 | } |
| 733 | |
| 734 | public Map<String, String> getParaFromTable(){ |
| 735 | Map<String, String> tableParas = new LinkedHashMap<String, String>(); |
| 736 | for (int i=0; i<table.getRowCount();i++){ |
| 737 | //System.out.println(table.getRowCount()); |
| 738 | String key = table.getValueAt(i, 0).toString(); |
| 739 | //System.out.println(key); |
| 740 | String value = table.getValueAt(i, 1).toString(); |
| 741 | //System.out.println(value); |
| 742 | |
| 743 | if (!key.equals(getSignPara())){ |
| 744 | tableParas.put(key, value); |
| 745 | } |
| 746 | } |
| 747 | System.out.println(tableParas); |
| 748 | return tableParas; |
| 749 | } |
| 750 | |
| 751 | public String getHost(IRequestInfo analyzeRequest){ |
| 752 | List<String> headers = analyzeRequest.getHeaders(); |
no test coverage detected