hello
I'm using 6.1.6 API
howevr I don't know how to add users using JAVA
is this right source below?
File f = new File(".txt File Path");
BufferedReader br = new BufferedReader(new InputStreamReader(new FileInputStream(f)));
String[] array = null;
String text = null;
while ((text = br.readLine()) != null)
{
array= text.split("\t");
User a = userUtil.createUserNoNotification(array[0], array[3], array[1], array[2]);
}
When I use that source code , I got NullPointerException...
How to handle it?
Please give me the way
Do you execute that code from inside a plugin or you've just created a Java class and want to add users ?
If you're not inside a plugin this code will not work and you should consider creating users using the REST api through the Jira Java Rest Client
https://bitbucket.org/atlassian/jira-rest-java-client
Also it's generraly a good practice to also include part of the exception when you ask a question, so it's visible exaclty where the exception is thrown
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.