I see multiple problem in this.
1.
if (booksearch==book[j])
should be
if (booksearch.equals(book[j]))
2. wrong break statement, it should be
if (booksearch==book[j]) {
System.out.println("The book is present at " + j);
break;
}
3. don't know how you initialized book array.