Hello, I am trying to open a file with intents:
Intent myIntent = null;
File file = new File(
"C:\Documents and Settings\user\workspace\fileopen\assets\file.htm");
// The intent will open our anddev.org-board and search for the keyword clicked.
myIntent = new Intent("android.intent.action.VIEW",
Uri.fromFile(file));
// Start the activity
startActivity(myIntent);
But I am file process.com.fileopen has stopped unexpectedly error.
Suggestions? Thanks!

