Here you can find the source of split(String line)
public static String[] split(String line)
//package com.java2s; /*//from w ww .j ava 2 s . co m * Copyright 2002-2012 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 { public static String[] split(String line) { List<String> args = new ArrayList<String>(); boolean quote = false; StringBuffer arg = new StringBuffer(); for (int i = 0; i < line.length(); i++) { char c = line.charAt(i); if (c == '"') { quote = !quote; continue; } else if (c == ' ') { if (!quote) { args.add(arg.toString()); arg.delete(0, arg.length()); continue; } } arg.append(c); } if (arg.length() > 0) { args.add(arg.toString()); } return args.toArray(new String[args.size()]); } }