Here you can find the source of splitIntoPackages(String stmt)
private static String[] splitIntoPackages(String stmt)
//package com.java2s; /*//from w w w . j a v a2 s . c o m * Copyright 2006-2009 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ import java.util.ArrayList; import java.util.List; public class Main { private static String[] splitIntoPackages(String stmt) { // spit the statement into packages but consider " List pkgs = new ArrayList(2); StringBuilder pkg = new StringBuilder(); boolean ignoreComma = false; for (int stringIndex = 0; stringIndex < stmt.length(); stringIndex++) { char currentChar = stmt.charAt(stringIndex); if (currentChar == ',') { if (ignoreComma) { pkg.append(currentChar); } else { pkgs.add(pkg.toString()); pkg = new StringBuilder(); ignoreComma = false; } } else { if (currentChar == '\"') { ignoreComma = !ignoreComma; } pkg.append(currentChar); } } pkgs.add(pkg.toString()); return (String[]) pkgs.toArray(new String[pkgs.size()]); } }