loaded file is pathname

Hi!
I want to load a .xml file, but instead of the file I get the PathName as mij 'loaded' file. Can anyone help me?
This is my code:
clear all
close all
clc
[FileName, PathName] = uigetfile('*.xml','Select the .xml file');
XMLFile = fullfile(PathName,FileName);
This is what I get in my Workspace. A char with the pathname..
Schermafdruk 2019-03-25 15.19.10.png

回答 (3 件)

Alex Mcaulley
Alex Mcaulley 2019 年 3 月 25 日

0 投票

You are not loading the file. fullfile function just build the name of the file.
You need to use xmlread function:
Fangjun Jiang
Fangjun Jiang 2019 年 3 月 25 日

0 投票

Increase the width of the "Value" column, you will see the full string. Or type "XMLFile" in Command Window.
Image Analyst
Image Analyst 2019 年 3 月 25 日

0 投票

XMLFile is a character string that contains the filename.
To get the contents of that XML file you need the xmlread() function.

3 件のコメント

Lois Bosschaart
Lois Bosschaart 2019 年 3 月 25 日
Hi,
Thanks for your answer! Now I get a 1x1 DeferredDocumentImpl. I don't know what that is and what to do with it :(
Image Analyst
Image Analyst 2019 年 3 月 25 日
I agree. The XML reading functions in MATLAB are complicated and confusing. That's why I use a utility written by a university that returns the XML file in a friendly and easy to use structure. See attached.
Lois Bosschaart
Lois Bosschaart 2019 年 3 月 26 日
Thanks a lot! It is fixed :)

サインインしてコメントする。

カテゴリ

ヘルプ センター および File ExchangeWorkspace Variables and MAT Files についてさらに検索

質問済み:

2019 年 3 月 25 日

コメント済み:

2019 年 3 月 26 日

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by