-
Notifications
You must be signed in to change notification settings - Fork 0
/
adding_campaigns.java
189 lines (163 loc) · 5.75 KB
/
adding_campaigns.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
import java.io.File;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.io.OutputStream;
import java.io.UnsupportedEncodingException;
import java.net.MalformedURLException;
import java.net.URL;
import java.net.URLConnection;
import jxl.Cell;
import jxl.Sheet;
import jxl.Workbook;
import jxl.read.biff.BiffException;
import jxl.write.Label;
import jxl.write.Number;
import jxl.write.WritableSheet;
import jxl.write.WritableWorkbook;
import jxl.write.WriteException;
import jxl.write.biff.RowsExceededException;
import org.apache.commons.codec.binary.Base64;
import org.json.JSONArray;
import org.json.JSONException;
import org.json.JSONObject;
import org.json.simple.parser.JSONParser;
import org.json.simple.parser.ParseException;
public class jsoncon {
/**
* @param args
*/
final static int n = 24;// enter number of merchants in the list
final static int c = 9;// number of columns for each merchant
public static JSONObject getMerchantId(JSONObject json)
throws JSONException {
String urlString = "http://ratnakar.api.clinknow.com/m/campaign/add";
String result = "";
String contentType = "application/json";
String charset = "UTF-8";
String name = "ratnakar";
String password = "banksecret";
String authString = name + ":" + password;
System.out.println("auth string: " + authString);
byte[] authEncBytes = Base64.encodeBase64(authString.getBytes());
String authStringEnc = new String(authEncBytes);
System.out.println("Base64 encoded auth string: " + authStringEnc);
URL url = null;
URLConnection connection = null;
OutputStream output = null;
InputStream response = null;
try {
url = new URL(urlString);
connection = url.openConnection();
connection.setRequestProperty("Authorization", "Basic "
+ authStringEnc);
connection.setDoOutput(true);
connection.setRequestProperty("Accept-Charset", charset);
connection.setRequestProperty("Content-Type", contentType
+ ";charset=" + charset);
// connection.setRequestProperty("username", username);
// connection.setRequestProperty("password", password);
output = connection.getOutputStream();
output.write(json.toString().getBytes());
response = connection.getInputStream();
BufferedReader br = new BufferedReader(new InputStreamReader(
response));
StringBuilder sb = new StringBuilder();
String line = null;
while ((line = br.readLine()) != null) {
sb.append(line);
}
response.close();
result = sb.toString();
System.out.println("Result : \n" + result);
} catch (MalformedURLException e) {
System.out.println("Incorrect URL for Rest Services");
} catch (UnsupportedEncodingException e) {
System.out.println("Unable to connect to Rest Services");
} catch (IOException e) {
e.printStackTrace();
System.out.println("Unable to connect to Rest Services");
}
return new JSONObject(result);
}
public static void main(String[] args) throws JSONException {
// String[] details = new String[c];
String[] headings = new String[c];
String orgId = new String();
JSONObject jsonObj = new JSONObject();
JSONObject json = new JSONObject();
JSONParser parser = new JSONParser();
JSONObject addressOrg = new JSONObject();
addressOrg.put("line_1", "Dummy_line1");
addressOrg.put("line_2", "Dummy_line2");
addressOrg.put("city", "Dummy");
addressOrg.put("state", "Dummy State");
addressOrg.put("country", "India");
addressOrg.put("pincode", 500008);
try {
// Create a workbook object from the file at specified location.
// Change the path of the file as per the location on your computer.
Workbook wrk1 = Workbook.getWorkbook(new File(
"F:/campaign upload.xls"));
// Obtain the reference to the first sheet in the workbook
Sheet sheet1 = wrk1.getSheet(0);
WritableWorkbook copy = Workbook.createWorkbook(new File(
"F:/campaigns with ids.xls"), wrk1);
WritableSheet sheet2 = copy.getSheet(0);
for (int k = 0; k < c; k++) {
Cell colArow = sheet1.getCell(k, 0);
String str_colArow = colArow.getContents();
headings[k] = str_colArow;
System.out.println("Heading of " + (k + 1) + " column \""
+ str_colArow + "\"");
}
Label label2 = new Label(c, 0, "campaign_uid");
sheet2.addCell(label2);
for (int i = 1; i < n; i++) {
for (int j = 0; j < c; j++)
// Obtain reference to the Cell using getCell(int col, int row)
// method of sheet
{
JSONArray campaignInfo = new JSONArray();
Cell colArow1 = sheet1.getCell(j, i);
String str_colArow1 = colArow1.getContents();
if (headings[j].equals("creative_id"))
json.put(headings[j], str_colArow1);
else {
if (headings[j].equals("campaign_info")) {
campaignInfo.put(json);// (headings[j],json);
jsonObj.put(headings[j],campaignInfo);
} else
jsonObj.put(headings[j], str_colArow1);
}
// System.out.println("Contents of cell Col" + jsonObj);
// details[j]=str_colArow1;
}
System.out.println(jsonObj);
JSONObject orgid = jsoncon.getMerchantId(jsonObj);
System.out.println(orgid);
Object obj = parser.parse(orgid.toString());
org.json.simple.JSONObject jsonp = (org.json.simple.JSONObject) obj;
orgId = (String) jsonp.get("campaign_uid");
Label label1 = new Label(c, i, orgId);
sheet2.addCell(label1);
// System.out.println("org_id= " +
// jsonp.get("Organization_id"));
}
// writing all orgId's into the excel sheet
copy.write();
copy.close();
} catch (BiffException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
} catch (ParseException e) {
e.printStackTrace();
} catch (RowsExceededException e) {
e.printStackTrace();
} catch (WriteException e) {
e.printStackTrace();
}
}
}