我刚刚开始为Symbian开发。我目前正在使用诺基亚Qt。我正在尝试启动另一个基于mime类型的应用程序。我目前正在关注此example。我想尝试打开一个.txt文件。

我发现很难理解如何创建RFile以及TDesC16类实际上是什么?

在该示例中,基本工作的代码如下:

// Gets the UID and MIME type for the given file name.
TUid uid;
TDataType dataType;
User::LeaveIfError(session.AppForDocument(aFileName, uid, dataType));

// Runs the default application using the MIME type, dataType.
// You can also use the UID to run the application.
TThreadId threadId;
User::LeaveIfError(session.StartDocument(aFileName, dataType, threadId));


变量aFileName必须为RFile类型。因此,我将如何创建该对象来打开存储在Computer \ Nokia C7-00 \ Phone memory \ test.txt(在资源管理器中)的.txt文件。

最佳答案

TDesC16是一个Symbian描述符,基本上是一个字符串。这是一本好手册:http://descriptors.blogspot.com/

至于你的问题。在示例中,aFileName看起来像是一个描述符。
因此要打开test.txt,请执行以下操作:

TThreadId threadId;
User::LeaveIfError(session.StartDocument(_L("c:\test.txt"), dataType, threadId));


如果要使用RFile,请参见以下代码示例:

RFs fs;
User::LeaveIfError(fs.Connect()); // connect to File Server
CleanupClosePushL(fs); // adding to the cleanup stack to ensure that the resources are released properly if a leave occurres while opening a file

RFile file;
User::LeaveIfError(file.Open(fs, _L("c:\test.txt"), EFileRead));
CleanupClosePushL(file);

// do something with file

CleanupStack::PopAndDestroy(2); // closes file and fs and removes them from the cleanup stack;

关于c++ - 如何使用Symbian的RFile打开文件?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/4972544/

10-09 04:10