byte[] image1 = ...TBD...
byte[] image2 = ...
if (image1.length != image2.length)
return false;
for (int i=0; i< image1.length)
if (image1[i] != imag2[i])
return false;
return true;
Or some sort of stream reader might be used.
Bill
Amit <deshpand...@gmail.com> wrote:
> --
> You received this message because you are subscribed to the Google Groups "webdriver" group.
> To post to this group, send email to webd...@googlegroups.com.
> To unsubscribe from this group, send email to webdriver+...@googlegroups.com.
> For more options, visit this group at http://groups.google.com/group/webdriver?hl=en.
>
> > To unsubscribe from this group, send email to webdriver+unsubscribe@googlegroups.com.
Bill