java check if a string starts with double quotes

java check if a string starts with double quotes
ref‮‬er to:lautturi.com
/**
 * @author lautturi.com
 * Java example: check if a string starts with double quotes in java
 */
import java.util.*;

public class Lautturi {

	public static void main(String[] args) {

		String str ="\"java program";
		if(str.startsWith("\""))
		{
		    System.out.println("the string start with quotes");
		}
	}
}

output:

the string start with double quotes
Created Time:2017-09-19 21:21:00  Author:lautturi