Here you can find the source of intFromJSON(String[] json, int pos)
private static int intFromJSON(String[] json, int pos)
//package com.java2s; /*/*from w w w .ja v a2 s . co m*/ * Copyright (c) 2016 - sikulix.com - MIT license */ public class Main { private static int intFromJSON(String[] json, int pos) { try { return Integer.parseInt(json[pos].trim()); } catch (Exception ex) { return 0; } } }