QSettings-store-and-read-Hex-value: Difference between revisions

From Qt Wiki
Jump to navigation Jump to search
No edit summary
 
(Decode HTML entity names)
 
(4 intermediate revisions by 2 users not shown)
Line 1: Line 1:
==QSettings store and read Hex value==
{{Cleanup | reason=Auto-imported from ExpressionEngine.}}


const QString str = QLatin1String(“0×23”);<br /> bool ok;<br /> const unsigned int parsedValue = str.toUInt(&amp;ok, 16);<br /> if (!ok) { //Parsing failed, handle error here<br /> }
== QSettings store and read Hex value ==
const QString str = QLatin1String("0x23");
bool ok;
const unsigned int parsedValue = str.toUInt(&ok, 16);
if (!ok) {
//Parsing failed, handle error here
}


qDebug() &lt;&lt; parsedValue;
qDebug() << parsedValue;


QSettings settings;
QSettings settings;


Store<br /> settings.setValue(‘key’,str);
Store
settings.setValue('key',str);


Read<br /> settings.value(‘key’).toString.toUInt(&amp;ok,16)
Read

Latest revision as of 17:33, 12 March 2015

This article may require cleanup to meet the Qt Wiki's quality standards. Reason: Auto-imported from ExpressionEngine.
Please improve this article if you can. Remove the {{cleanup}} tag and add this page to Updated pages list after it's clean.

QSettings store and read Hex value

const QString str = QLatin1String("0x23"); bool ok; const unsigned int parsedValue = str.toUInt(&ok, 16); if (!ok) {

//Parsing failed, handle error here

}

qDebug() << parsedValue;

QSettings settings;

Store settings.setValue('key',str);

Read