<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[Problem bei Datei Lesen]]></title><description><![CDATA[<p>hier erstemal mein code;</p>
<pre><code class="language-cpp">// Entwurf 1Dlg.cpp : implementation file
//

#include &quot;stdafx.h&quot;
#include &quot;Entwurf 1.h&quot;
#include &quot;Entwurf 1Dlg.h&quot;

#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif

/////////////////////////////////////////////////////////////////////////////
// CEntwurf1Dlg dialog

CEntwurf1Dlg::CEntwurf1Dlg(CWnd* pParent /*=NULL*/)
	: CDialog(CEntwurf1Dlg::IDD, pParent)
{
	//{{AFX_DATA_INIT(CEntwurf1Dlg)
		// NOTE: the ClassWizard will add member initialization here
	//}}AFX_DATA_INIT
	// Note that LoadIcon does not require a subsequent DestroyIcon in Win32
	m_hIcon = AfxGetApp()-&gt;LoadIcon(IDR_MAINFRAME);
}

void CEntwurf1Dlg::DoDataExchange(CDataExchange* pDX)
{
	CDialog::DoDataExchange(pDX);
	//{{AFX_DATA_MAP(CEntwurf1Dlg)
		// NOTE: the ClassWizard will add DDX and DDV calls here
	//}}AFX_DATA_MAP
}

BEGIN_MESSAGE_MAP(CEntwurf1Dlg, CDialog)
	//{{AFX_MSG_MAP(CEntwurf1Dlg)
	ON_BN_CLICKED(IDC_BUTTON2, OnButton2)
	ON_BN_CLICKED(IDC_BUTTON1, OnButton1)
	//}}AFX_MSG_MAP
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CEntwurf1Dlg message handlers

BOOL CEntwurf1Dlg::OnInitDialog()
{
	CDialog::OnInitDialog();

	// Set the icon for this dialog.  The framework does this automatically
	//  when the application's main window is not a dialog
	SetIcon(m_hIcon, TRUE);			// Set big icon
	SetIcon(m_hIcon, FALSE);		// Set small icon

	CenterWindow(GetDesktopWindow());	// center to the hpc screen

	// TODO: Add extra initialization here

	return TRUE;  // return TRUE  unless you set the focus to a control
}

void CEntwurf1Dlg::OnButton2() 
{

	char Read(128);		
	char str[100];
//	unsigned short* a = (unsigned short *) &quot;\\My Documents\\data.txt&quot;;

	CFile datei((unsigned short *) &quot;\\data.txt&quot;, CFile::modeRead);
	datei.Read(str, sizeof(str));
	datei.Open((unsigned short *) &quot;\\data.txt&quot;,NULL,NULL);
	datei.Close();
}

void CEntwurf1Dlg::OnButton1() 
{

	char Write(128);
	char str[100];
//	unsigned short* a = (unsigned short *) &quot;\\My Documents\\data.txt&quot;;

	CFile datei((unsigned short *) &quot;\\data.txt&quot;, CFile::modeWrite);
	datei.Write(str, sizeof(str));
	datei.Open((unsigned short *) &quot;\\data.txt&quot;,NULL,NULL);
	datei.Close();
	try
	{
		CFile datei((unsigned short *) &quot;\\data.txt&quot;, CFile::modeWrite);
		datei.Write(str, sizeof(str));
		datei.Close();
	}
	catch(CFileException *e)
	{
		if (e-&gt;m_cause == CFileException::fileNotFound)
			printf(&quot;Datei wurde nicht gefunden\n&quot;);
		e-&gt;Delete();		
	}
}
</code></pre>
<p>wennsch dann jetzt das programm übertrage. es startet aber sobald ich auf einen button klicke, kommt nur das hier</p>
<p><strong>ΠΠΠΠΠt was not found</strong></p>
<p>und warum bitteschön, müsste doch eiegntlich gehen. die datei habsch auch mal auf dummen dunnst mit in den ordner gepackt. auf dem gerät is sie sowieso.</p>
<p>meine umgebung:<br />
embedded visual c++ 4.0<br />
windows ce 4.2</p>
<p>vielen dank für die hilfe</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/194733/problem-bei-datei-lesen</link><generator>RSS for Node</generator><lastBuildDate>Thu, 09 Apr 2026 23:35:49 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/194733.rss" rel="self" type="application/rss+xml"/><pubDate>Wed, 10 Oct 2007 11:18:24 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Problem bei Datei Lesen on Wed, 10 Oct 2007 11:18:24 GMT]]></title><description><![CDATA[<p>hier erstemal mein code;</p>
<pre><code class="language-cpp">// Entwurf 1Dlg.cpp : implementation file
//

#include &quot;stdafx.h&quot;
#include &quot;Entwurf 1.h&quot;
#include &quot;Entwurf 1Dlg.h&quot;

#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif

/////////////////////////////////////////////////////////////////////////////
// CEntwurf1Dlg dialog

CEntwurf1Dlg::CEntwurf1Dlg(CWnd* pParent /*=NULL*/)
	: CDialog(CEntwurf1Dlg::IDD, pParent)
{
	//{{AFX_DATA_INIT(CEntwurf1Dlg)
		// NOTE: the ClassWizard will add member initialization here
	//}}AFX_DATA_INIT
	// Note that LoadIcon does not require a subsequent DestroyIcon in Win32
	m_hIcon = AfxGetApp()-&gt;LoadIcon(IDR_MAINFRAME);
}

void CEntwurf1Dlg::DoDataExchange(CDataExchange* pDX)
{
	CDialog::DoDataExchange(pDX);
	//{{AFX_DATA_MAP(CEntwurf1Dlg)
		// NOTE: the ClassWizard will add DDX and DDV calls here
	//}}AFX_DATA_MAP
}

BEGIN_MESSAGE_MAP(CEntwurf1Dlg, CDialog)
	//{{AFX_MSG_MAP(CEntwurf1Dlg)
	ON_BN_CLICKED(IDC_BUTTON2, OnButton2)
	ON_BN_CLICKED(IDC_BUTTON1, OnButton1)
	//}}AFX_MSG_MAP
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CEntwurf1Dlg message handlers

BOOL CEntwurf1Dlg::OnInitDialog()
{
	CDialog::OnInitDialog();

	// Set the icon for this dialog.  The framework does this automatically
	//  when the application's main window is not a dialog
	SetIcon(m_hIcon, TRUE);			// Set big icon
	SetIcon(m_hIcon, FALSE);		// Set small icon

	CenterWindow(GetDesktopWindow());	// center to the hpc screen

	// TODO: Add extra initialization here

	return TRUE;  // return TRUE  unless you set the focus to a control
}

void CEntwurf1Dlg::OnButton2() 
{

	char Read(128);		
	char str[100];
//	unsigned short* a = (unsigned short *) &quot;\\My Documents\\data.txt&quot;;

	CFile datei((unsigned short *) &quot;\\data.txt&quot;, CFile::modeRead);
	datei.Read(str, sizeof(str));
	datei.Open((unsigned short *) &quot;\\data.txt&quot;,NULL,NULL);
	datei.Close();
}

void CEntwurf1Dlg::OnButton1() 
{

	char Write(128);
	char str[100];
//	unsigned short* a = (unsigned short *) &quot;\\My Documents\\data.txt&quot;;

	CFile datei((unsigned short *) &quot;\\data.txt&quot;, CFile::modeWrite);
	datei.Write(str, sizeof(str));
	datei.Open((unsigned short *) &quot;\\data.txt&quot;,NULL,NULL);
	datei.Close();
	try
	{
		CFile datei((unsigned short *) &quot;\\data.txt&quot;, CFile::modeWrite);
		datei.Write(str, sizeof(str));
		datei.Close();
	}
	catch(CFileException *e)
	{
		if (e-&gt;m_cause == CFileException::fileNotFound)
			printf(&quot;Datei wurde nicht gefunden\n&quot;);
		e-&gt;Delete();		
	}
}
</code></pre>
<p>wennsch dann jetzt das programm übertrage. es startet aber sobald ich auf einen button klicke, kommt nur das hier</p>
<p><strong>ΠΠΠΠΠt was not found</strong></p>
<p>und warum bitteschön, müsste doch eiegntlich gehen. die datei habsch auch mal auf dummen dunnst mit in den ordner gepackt. auf dem gerät is sie sowieso.</p>
<p>meine umgebung:<br />
embedded visual c++ 4.0<br />
windows ce 4.2</p>
<p>vielen dank für die hilfe</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1381952</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1381952</guid><dc:creator><![CDATA[shader09]]></dc:creator><pubDate>Wed, 10 Oct 2007 11:18:24 GMT</pubDate></item><item><title><![CDATA[Reply to Problem bei Datei Lesen on Wed, 10 Oct 2007 11:24:31 GMT]]></title><description><![CDATA[<p>Dein Versuch, String-Literale per Cast ( <code>(unsigned short *) &quot;...&quot;</code> ) als UNICODE-Strings umzudeuten, ist schon im Ansatz zum Scheitern verursacht - verwende lieber gleich wide-Strings ( <code>TEXT(&quot;...&quot;)</code> oder <code>L&quot;...&quot;</code> ) verwenden.</p>
<p>(lass mich raten - die Cast's hast du eingebaut, nachdem der Compiler auf fehlende Konvertierungen von char[...] nach unsigned short* aufmerksam gemacht hat)</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1381958</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1381958</guid><dc:creator><![CDATA[CStoll]]></dc:creator><pubDate>Wed, 10 Oct 2007 11:24:31 GMT</pubDate></item><item><title><![CDATA[Reply to Problem bei Datei Lesen on Wed, 10 Oct 2007 11:49:18 GMT]]></title><description><![CDATA[<p>meinst du mit den casts diese teile hier (//) wenn ja, nein hab ich nicht. bei mir kommt kein fehler, also das programm lässte sich komplett debugen.<br />
hab nur gedacht vielleicht liegt es an dem pfad oder so.</p>
<p>kannst mit das mal mit den wide-strings anhand meines codes zeigen. bin noch absoluter neuling in c++. wäre echt der hit</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1381978</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1381978</guid><dc:creator><![CDATA[shader09]]></dc:creator><pubDate>Wed, 10 Oct 2007 11:49:18 GMT</pubDate></item><item><title><![CDATA[Reply to Problem bei Datei Lesen on Wed, 10 Oct 2007 12:04:47 GMT]]></title><description><![CDATA[<p>Das ist ein cast:</p>
<pre><code class="language-cpp">(unsigned short *)
</code></pre>
<p>Und du sollst mal das versuchen:</p>
<pre><code class="language-cpp">CFile datei(TEXT(&quot;\\data.txt&quot;), CFile::modeWrite);
</code></pre>
<p>Wobei ich mir die Frage stelle, wo die Datei relativ zu deiner Exe gesehen liegt.</p>
<p>\\datei.txt kommt mir so falsch vor.<br />
.\\datei.txt wäre das aktuelle Verzeichnis und ..\\datei.txt das darüber.<br />
Aber was ist \\datei.txt?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1381993</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1381993</guid><dc:creator><![CDATA[estartu]]></dc:creator><pubDate>Wed, 10 Oct 2007 12:04:47 GMT</pubDate></item><item><title><![CDATA[Reply to Problem bei Datei Lesen on Wed, 10 Oct 2007 12:10:16 GMT]]></title><description><![CDATA[<p>estartu schrieb:</p>
<blockquote>
<p>Das ist ein cast:</p>
<pre><code class="language-cpp">(unsigned short *)
</code></pre>
<p>Und du sollst mal das versuchen:</p>
<pre><code class="language-cpp">CFile datei(TEXT(&quot;\\data.txt&quot;), CFile::modeWrite);
</code></pre>
<p>Wobei ich mir die Frage stelle, wo die Datei relativ zu deiner Exe gesehen liegt.</p>
<p>achso, das ist ein cast. naja wieder was dazugelernt <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f642.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--slightly_smiling_face"
      title=":-)"
      alt="🙂"
    /></p>
<p>\\datei.txt kommt mir so falsch vor.<br />
.\\datei.txt wäre das aktuelle Verzeichnis und ..\\datei.txt das darüber.<br />
Aber was ist \\datei.txt?</p>
</blockquote>
<p>das ist auch falsch, meine natürlich den gleichen pfad wie ich den bei der einen zeile auskommentiert habe. sorry mein fehler</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1381998</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1381998</guid><dc:creator><![CDATA[shader09]]></dc:creator><pubDate>Wed, 10 Oct 2007 12:10:16 GMT</pubDate></item><item><title><![CDATA[Reply to Problem bei Datei Lesen on Wed, 10 Oct 2007 12:19:29 GMT]]></title><description><![CDATA[<p>wenn ich jetzt aus der txt datei etwas zeilenweise auslesen möchte, wie realisere ich das</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1382011</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1382011</guid><dc:creator><![CDATA[shader09]]></dc:creator><pubDate>Wed, 10 Oct 2007 12:19:29 GMT</pubDate></item><item><title><![CDATA[Reply to Problem bei Datei Lesen on Wed, 10 Oct 2007 12:29:27 GMT]]></title><description><![CDATA[<p>Schau mal, ob CStdioFile bei dir geht. <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f642.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--slightly_smiling_face"
      title=":)"
      alt="🙂"
    /></p>
]]></description><link>https://www.c-plusplus.net/forum/post/1382022</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1382022</guid><dc:creator><![CDATA[estartu]]></dc:creator><pubDate>Wed, 10 Oct 2007 12:29:27 GMT</pubDate></item><item><title><![CDATA[Reply to Problem bei Datei Lesen on Wed, 10 Oct 2007 13:13:48 GMT]]></title><description><![CDATA[<p>1. TEXT(&quot;abc&quot;) ist kein cast, sondern ein Makro, der einen Unicode String aus der Konstante macht. Besser man verwendet _T!<br />
2. &quot;\\datei.txt&quot; öffnet die Datei datei.txt im Rootverzeichnis der Festplatte die durch das current working sdirectory definiert wird.<br />
3. &quot;.\\datei.txt&quot; öffnet nicht die Datei in dem Verzeichnis in dem die EXE steht, sonder die Datei im current working directory!</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1382077</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1382077</guid><dc:creator><![CDATA[Martin Richter]]></dc:creator><pubDate>Wed, 10 Oct 2007 13:13:48 GMT</pubDate></item><item><title><![CDATA[Reply to Problem bei Datei Lesen on Wed, 10 Oct 2007 13:19:03 GMT]]></title><description><![CDATA[<p>Martin Richter schrieb:</p>
<blockquote>
<p>1. TEXT(&quot;abc&quot;) ist kein cast, sondern ein Makro, der einen Unicode String aus der Konstante macht. Besser man verwendet _T!</p>
</blockquote>
<p>Wieso hast du dann oben TEXT genannt? Ich dachte, du hättest dir dabei was gedacht und habe es daher verwendet. (Könnte ja sein, dass _T bei embedded nicht geht.)</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1382088</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1382088</guid><dc:creator><![CDATA[estartu]]></dc:creator><pubDate>Wed, 10 Oct 2007 13:19:03 GMT</pubDate></item><item><title><![CDATA[Reply to Problem bei Datei Lesen on Wed, 10 Oct 2007 13:22:00 GMT]]></title><description><![CDATA[<p>jep CStdioFile das funktioniert.<br />
muss ich dann mal kucken wie das funktioniert damit. oder kannst du mir das vielleicht sagen.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1382093</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1382093</guid><dc:creator><![CDATA[shader09]]></dc:creator><pubDate>Wed, 10 Oct 2007 13:22:00 GMT</pubDate></item><item><title><![CDATA[Reply to Problem bei Datei Lesen on Wed, 10 Oct 2007 13:31:21 GMT]]></title><description><![CDATA[<p>Magst du die Forensuche nicht? <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f609.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--winking_face"
      title=";)"
      alt="😉"
    /></p>
<p>Der Post von abrissbirne: <a href="http://www.c-plusplus.net/forum/viewtopic-var-t-is-189775-and-highlight-is-cstdiofile.html" rel="nofollow">http://www.c-plusplus.net/forum/viewtopic-var-t-is-189775-and-highlight-is-cstdiofile.html</a></p>
]]></description><link>https://www.c-plusplus.net/forum/post/1382101</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1382101</guid><dc:creator><![CDATA[estartu]]></dc:creator><pubDate>Wed, 10 Oct 2007 13:31:21 GMT</pubDate></item><item><title><![CDATA[Reply to Problem bei Datei Lesen on Wed, 10 Oct 2007 16:12:00 GMT]]></title><description><![CDATA[<p>estartu schrieb:</p>
<blockquote>
<p>Martin Richter schrieb:</p>
<blockquote>
<p>1. TEXT(&quot;abc&quot;) ist kein cast, sondern ein Makro, der einen Unicode String aus der Konstante macht. Besser man verwendet _T!</p>
</blockquote>
<p>Wieso hast du dann oben TEXT genannt? Ich dachte, du hättest dir dabei was gedacht und habe es daher verwendet. (Könnte ja sein, dass _T bei embedded nicht geht.)</p>
</blockquote>
<p>Verwechselst Du mich mit CStoll?<br />
Ich habe nur einmal geantwortet bisher<br />
Grundsätzlich empfehle ich nie TEXT. Ich rate immer zu den T-Makros.</p>
<p>tchar.h gibt es auch in Embedded...</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1382158</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1382158</guid><dc:creator><![CDATA[Martin Richter]]></dc:creator><pubDate>Wed, 10 Oct 2007 16:12:00 GMT</pubDate></item><item><title><![CDATA[Reply to Problem bei Datei Lesen on Wed, 10 Oct 2007 14:49:51 GMT]]></title><description><![CDATA[<p>_T ist doch das selbe wie TEXT oder nicht???</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1382170</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1382170</guid><dc:creator><![CDATA[hä?]]></dc:creator><pubDate>Wed, 10 Oct 2007 14:49:51 GMT</pubDate></item><item><title><![CDATA[Reply to Problem bei Datei Lesen on Wed, 10 Oct 2007 16:11:39 GMT]]></title><description><![CDATA[<p>Es hat eine ähnliche Funktion. Nur ist das eine CRT verankert und das andere im Windows SDK. Es ist in keinem Fall das selbe!</p>
<p>So reagiert TEXT auf das define UNICODE und _T auf den define _UNICODE.<br />
<img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f642.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--slightly_smiling_face"
      title=":)"
      alt="🙂"
    /><br />
Ich verwende lieber konsisten dir CRT Variante.</p>
<p>Siehe dazu auch:<br />
<a href="http://blog.m-ri.de/index.php/2007/05/31/_unicode-versus-unicode-und-so-manches-eigentuemliche/" rel="nofollow">http://blog.m-ri.de/index.php/2007/05/31/_unicode-versus-unicode-und-so-manches-eigentuemliche/</a><br />
Nett nicht.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1382233</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1382233</guid><dc:creator><![CDATA[Martin Richter]]></dc:creator><pubDate>Wed, 10 Oct 2007 16:11:39 GMT</pubDate></item><item><title><![CDATA[Reply to Problem bei Datei Lesen on Thu, 11 Oct 2007 05:17:56 GMT]]></title><description><![CDATA[<p>Martin Richter schrieb:</p>
<blockquote>
<p>Verwechselst Du mich mit CStoll?</p>
</blockquote>
<p>Oh ja, entschuldige.</p>
<p>Mir ist _T lieber... man ist ja faul. <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f609.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--winking_face"
      title=";)"
      alt="😉"
    /></p>
]]></description><link>https://www.c-plusplus.net/forum/post/1382519</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1382519</guid><dc:creator><![CDATA[estartu]]></dc:creator><pubDate>Thu, 11 Oct 2007 05:17:56 GMT</pubDate></item><item><title><![CDATA[Reply to Problem bei Datei Lesen on Thu, 11 Oct 2007 05:42:19 GMT]]></title><description><![CDATA[<p>hätte da mal noch ne frage, ich will sagen (durch ein editfeld) was in die txt datei geschrieben wird. müsste ich ja eigenlich nur ne variable deklarieren und der die edit box zuweisen. habs probiert aber funktioniert nicht (statts str ein a eingefügt und dann = idc_edit1), warum?!<br />
genau das gleiche will ich bei dem lesen machen, also es soll halt in dem editfeld stehen!?<br />
vielen dank für die bisherige hilfe*thx*</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1382523</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1382523</guid><dc:creator><![CDATA[shader09]]></dc:creator><pubDate>Thu, 11 Oct 2007 05:42:19 GMT</pubDate></item><item><title><![CDATA[Reply to Problem bei Datei Lesen on Thu, 11 Oct 2007 05:57:43 GMT]]></title><description><![CDATA[<p>hab mir auch grad mal die datei angekuckt, also schreiben scheint zu funktionieren. aber in der datei stehen jetz nur wieder irgendwelche zeichen. nichts von text oder so</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1382528</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1382528</guid><dc:creator><![CDATA[shader09]]></dc:creator><pubDate>Thu, 11 Oct 2007 05:57:43 GMT</pubDate></item></channel></rss>