lsj14 Posted February 2, 2015 Posted February 2, 2015 (edited) hey, what could be wrong with this code? I'm using acis 330rev private static void sendReport(String event, L2PcInstance player, String command) { StringTokenizer st = new StringTokenizer(command); st.nextToken(); String message = ""; String _type = null; L2GameClient info = player.getClient().getConnection().getClient(); try { _type = st.nextToken(); while (st.hasMoreTokens()) { message = message + st.nextToken() + " "; } if (message.equals("")) { player.sendMessage("Message box cannot be empty."); return; } String timeStamp = new SimpleDateFormat("yyyy-MM-dd HH-mm-ss").format(Calendar.getInstance().getTime()); String fname = "data/Reports/" + player.getName() + " "+timeStamp+".txt"; File file = new File(fname); boolean exist = file.createNewFile(); if (!exist) { return; } FileWriter fstream = new FileWriter(fname); BufferedWriter out = new BufferedWriter(fstream); out.write("Character Info: " + info + "\r\nBug Type: " + _type + "\r\nMessage: " + message); player.sendMessage("Report successfully sent. Staff will check it soon, thank you!"); for (L2PcInstance allgms : L2World.getAllGMs()) { allgms.sendMessage(player.getName() + " has sent a report. Type: " + _type); } out.close(); } catch (Exception e) { L2Character._log.warning("could not send report: " + e); } } I get this error when sending the report, however this worked fine on 320rev: java.util.NoSuchElementException Please help me :/ Edited February 2, 2015 by lsj14
0 lsj14 Posted February 2, 2015 Author Posted February 2, 2015 its not trying to load anything, it creates one :p
0 povis111 Posted February 3, 2015 Posted February 3, 2015 probably a wrong bypass string with less than required parameters sent from the npc as "command" , this would fix the problem. source: http://javarevisited.blogspot.com/2012/02/how-to-solve-javautilnosuchelementexcep.html private static void sendReport(String event, L2PcInstance player, String command) { StringTokenizer st = new StringTokenizer(command); if(st.hasMoreTokens()) st.nextToken(); String message = ""; String _type = null; L2GameClient info = player.getClient().getConnection().getClient(); try { if(st.hasMoreTokens()) _type = st.nextToken(); while (st.hasMoreTokens()) { message = message + st.nextToken() + " "; } if (message.equals("")) { player.sendMessage("Message box cannot be empty."); return; } String timeStamp = new SimpleDateFormat("yyyy-MM-dd HH-mm-ss").format(Calendar.getInstance().getTime()); String fname = "data/Reports/" + player.getName() + " "+timeStamp+".txt"; File file = new File(fname); boolean exist = file.createNewFile(); if (!exist) { return; } FileWriter fstream = new FileWriter(fname); BufferedWriter out = new BufferedWriter(fstream); out.write("Character Info: " + info + "\r\nBug Type: " + _type + "\r\nMessage: " + message); player.sendMessage("Report successfully sent. Staff will check it soon, thank you!"); for (L2PcInstance allgms : L2World.getAllGMs()) { allgms.sendMessage(player.getName() + " has sent a report. Type: " + _type); } out.close(); } catch (Exception e) { L2Character._log.warning("could not send report: " + e); } }
Question
lsj14
hey, what could be wrong with this code? I'm using acis 330rev
private static void sendReport(String event, L2PcInstance player, String command) { StringTokenizer st = new StringTokenizer(command); st.nextToken(); String message = ""; String _type = null; L2GameClient info = player.getClient().getConnection().getClient(); try { _type = st.nextToken(); while (st.hasMoreTokens()) { message = message + st.nextToken() + " "; } if (message.equals("")) { player.sendMessage("Message box cannot be empty."); return; } String timeStamp = new SimpleDateFormat("yyyy-MM-dd HH-mm-ss").format(Calendar.getInstance().getTime()); String fname = "data/Reports/" + player.getName() + " "+timeStamp+".txt"; File file = new File(fname); boolean exist = file.createNewFile(); if (!exist) { return; } FileWriter fstream = new FileWriter(fname); BufferedWriter out = new BufferedWriter(fstream); out.write("Character Info: " + info + "\r\nBug Type: " + _type + "\r\nMessage: " + message); player.sendMessage("Report successfully sent. Staff will check it soon, thank you!"); for (L2PcInstance allgms : L2World.getAllGMs()) { allgms.sendMessage(player.getName() + " has sent a report. Type: " + _type); } out.close(); } catch (Exception e) { L2Character._log.warning("could not send report: " + e); } }I get this error when sending the report, however this worked fine on 320rev: java.util.NoSuchElementException
Please help me :/
Edited by lsj143 answers to this question
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now