/* ESc101 Laboratory Assignment Monday of Week of 20/09/04 2) You are given 2 strings str1 and str2. Check if all the characters in str2 occur in str1 or not. The ordering of the characters may or may not be the same. */ import javabook.*; import java.awt.*; class Compare{ public boolean compare(String str1 , String str2) { int i=0,j=0; boolean found=false; StringBuffer str; int length_str2=str2.length(); int length_str1=str1.length(); int count =0; char c,ch; for (j=0;j