Как сериализовать и десериализовать xml файл - C#

Узнай цену своей работы

Формулировка задачи:

Как сериализовать и десериализовать такой файл. Будет считвааться файл, в котором будет изменено какое либо значение, и файл перезапишется. Как это реализовать?
Листинг программы
  1. <?xml version="1.0" encoding="ISO8859-1"?>
  2. <report>
  3. <eeprom datetime="""" version="ENHANCED PBB/ГЏBB cor/dens v10.21"/>
  4. <sn> 015.15.01.001 </sn>
  5. <file type="tar" path="\internal\analog.tar">
  6. <point>
  7. <x> -11,0000000 </x>
  8. <y> 1,6000000 </y>
  9. </point>
  10. <point>
  11. <x> -0,0500000 </x>
  12. <y> 0,0000000 </y>
  13. </point>
  14. </file>
  15. <file type="cor" path="\external\density.cor">
  16. <surface>
  17. <a0> 94,2354142 </a0>
  18. <a1> -0,0221535 </a1>
  19. <a2> -0,0003144 </a2>
  20. <a11> 0,0000612 </a11>
  21. <a22> 0,0000527 </a22>
  22. <a12> 0,0000138 </a12>
  23. <p> 1,0000000 </p>
  24. </surface>
  25. <surface>
  26. <a0> 195,6333900 </a0>
  27. <a1> -1,6856153 </a1>
  28. <a2> -0,1572739 </a2>
  29. <a11> 0,0000000 </a11>
  30. <a22> 0,0000000 </a22>
  31. <a12> 0,0000000 </a12>
  32. <p> 3,0000000 </p>
  33. </surface>
  34. <surface>
  35. <a0> 0,0000000 </a0>
  36. <a1> 0,0000000 </a1>
  37. <a2> 0,0000000 </a2>
  38. <a11> -0,0002810 </a11>
  39. <a22> 0,0000002 </a22>
  40. <a12> 0,0000000 </a12>
  41. <p> 6,0000000 </p>
  42. </surface>
  43. <surface>
  44. <a0> -12,7016854 </a0>
  45. <a1> -0,0147873 </a1>
  46. <a2> -0,0066385 </a2>
  47. <a11> 0,0000000 </a11>
  48. <a22> 0,0000000 </a22>
  49. <a12> 0,0000000 </a12>
  50. <p> 7,0000000 </p>
  51. </surface>
  52. <surface>
  53. <a0> 1000,0000000 </a0>
  54. <a1> 0,0000000 </a1>
  55. <a2> 100,0000000 </a2>
  56. <a11> 0,0000000 </a11>
  57. <a22> 0,0000000 </a22>
  58. <a12> 0,0000000 </a12>
  59. <p> 0,0000000 </p>
  60. </surface>
  61. </file>
  62. <file type="tar" path="\internal\pressure.tar">
  63. <point>
  64. <x> 2360,0000000 </x>
  65. <y> 0,0000000 </y>
  66. </point>
  67. <point>
  68. <x> 3345,0000000 </x>
  69. <y> 50,0000000 </y>
  70. </point>
  71. <point>
  72. <x> 4463,0000000 </x>
  73. <y> 100,0000000 </y>
  74. </point>
  75. <point>
  76. <x> 6855,0000000 </x>
  77. <y> 208,0000000 </y>
  78. </point>
  79. <point>
  80. <x> 8760,0000000 </x>
  81. <y> 294,0000000 </y>
  82. </point>
  83. <point>
  84. <x> 11240,0000000 </x>
  85. <y> 405,0000000 </y>
  86. </point>
  87. </file>
  88. <file type="tar" path="\external\density.tar">
  89. <point>
  90. <x> 0,8936380 </x>
  91. <y> 0,0000000 </y>
  92. </point>
  93. <point>
  94. <x> 0,9825000 </x>
  95. <y> 0,8150000 </y>
  96. </point>
  97. <point>
  98. <x> 1,0000010 </x>
  99. <y> 1,0010000 </y>
  100. </point>
  101. <point>
  102. <x> 1,0108000 </x>
  103. <y> 1,1190000 </y>
  104. </point>
  105. <point>
  106. <x> 1,0196900 </x>
  107. <y> 1,2240000 </y>
  108. </point>
  109. <point>
  110. <x> 1,0258670 </x>
  111. <y> 1,2850000 </y>
  112. </point>
  113. <point>
  114. <x> 1,0380690 </x>
  115. <y> 1,4040000 </y>
  116. </point>
  117. <point>
  118. <x> 1,0479150 </x>
  119. <y> 1,4950000 </y>
  120. </point>
  121. <point>
  122. <x> 1,0544800 </x>
  123. <y> 1,5470001 </y>
  124. </point>
  125. <point>
  126. <x> 1,0661221 </x>
  127. <y> 1,6500000 </y>
  128. </point>
  129. <point>
  130. <x> 1,0793750 </x>
  131. <y> 1,7890000 </y>
  132. </point>
  133. <point>
  134. <x> 1,0899500 </x>
  135. <y> 1,9020000 </y>
  136. </point>
  137. <point>
  138. <x> 1,0987999 </x>
  139. <y> 1,9890000 </y>
  140. </point>
  141. </file>
  142. <file type="tar" path="\external\coriol.tar">
  143. <point>
  144. <x> 0,0000000 </x>
  145. <y> 0,0000000 </y>
  146. </point>
  147. <point>
  148. <x> 1,0791800 </x>
  149. <y> 9,0987000 </y>
  150. </point>
  151. </file>
  152. <file type="tar" path="\external\rotate.tar">
  153. <point>
  154. <x> 0,2565799 </x>
  155. <y> 0,0000000 </y>
  156. </point>
  157. <point>
  158. <x> 60,1064796 </x>
  159. <y> -2,1903136 </y>
  160. </point>
  161. <point>
  162. <x> 106,9991989 </x>
  163. <y> -2,3863220 </y>
  164. </point>
  165. <point>
  166. <x> 151,6266937 </x>
  167. <y> -0,3373822 </y>
  168. </point>
  169. <point>
  170. <x> 205,9278107 </x>
  171. <y> 3,1176889 </y>
  172. </point>
  173. <point>
  174. <x> 251,9207611 </x>
  175. <y> 5,8769779 </y>
  176. </point>
  177. <point>
  178. <x> 304,5603638 </x>
  179. <y> 11,1572847 </y>
  180. </point>
  181. <point>
  182. <x> 356,8971252 </x>
  183. <y> 10,8234024 </y>
  184. </point>
  185. <point>
  186. <x> 416,0352173 </x>
  187. <y> 16,9653740 </y>
  188. </point>
  189. </file>
  190. <file type="tar" path="\external\rgr.tar">
  191. <point>
  192. <x> 0,8150000 </x>
  193. <y> -2,0000000 </y>
  194. </point>
  195. <point>
  196. <x> 1,0000000 </x>
  197. <y> 0,0000000 </y>
  198. </point>
  199. <point>
  200. <x> 1,1190000 </x>
  201. <y> -5,0000000 </y>
  202. </point>
  203. <point>
  204. <x> 1,2240000 </x>
  205. <y> -6,0000000 </y>
  206. </point>
  207. <point>
  208. <x> 1,2840000 </x>
  209. <y> -7,0000000 </y>
  210. </point>
  211. <point>
  212. <x> 1,4030000 </x>
  213. <y> -8,0000000 </y>
  214. </point>
  215. <point>
  216. <x> 1,4950060 </x>
  217. <y> -13,0000000 </y>
  218. </point>
  219. <point>
  220. <x> 1,5810000 </x>
  221. <y> -14,0000000 </y>
  222. </point>
  223. <point>
  224. <x> 1,6880000 </x>
  225. <y> -16,0000000 </y>
  226. </point>
  227. <point>
  228. <x> 1,7890151 </x>
  229. <y> -19,0000000 </y>
  230. </point>
  231. <point>
  232. <x> 1,9019730 </x>
  233. <y> -21,0000000 </y>
  234. </point>
  235. <point>
  236. <x> 1,9600000 </x>
  237. <y> -24,0000000 </y>
  238. </point>
  239. </file>
  240. </report>

Решение задачи: «Как сериализовать и десериализовать xml файл»

textual
Листинг программы
  1. <?xml version="1.0"?>
  2.  
  3. -<report>
  4.  
  5.  
  6. -<file type="cor" path="\external\density.cor">
  7.  
  8.  
  9. -<surface>
  10.  
  11. <a0>92,76990160</a0>
  12.  
  13. <a1>-0,02616939127</a1>
  14.  
  15. <a2>-0,0007281888176</a2>
  16.  
  17. <a11>0,0001698139469</a11>
  18.  
  19. <a22>0,0001199772422</a22>
  20.  
  21. <a12>-0,00005760185477</a12>
  22.  
  23. <p>1,000000000000000</p>
  24.  
  25. </surface>
  26.  
  27.  
  28. -<surface>
  29.  
  30. <a0>-1695,664630</a0>
  31.  
  32. <a1>6,000330408</a1>
  33.  
  34. <a2>1,390127945</a2>
  35.  
  36. <a11>0,000000000000000</a11>
  37.  
  38. <a22>0,000000000000000</a22>
  39.  
  40. <a12>0,000000000000000</a12>
  41.  
  42. <p>3,000000000000000</p>
  43.  
  44. </surface>
  45.  
  46.  
  47. -<surface>
  48.  
  49. <a0>0,000000000000000</a0>
  50.  
  51. <a1>0,000000000000000</a1>
  52.  
  53. <a2>0,000000000000000</a2>
  54.  
  55. <a11>-0,0006129142836</a11>
  56.  
  57. <a22>0,00000040829725</a22>
  58.  
  59. <a12>0,000000000000000</a12>
  60.  
  61. <p>6,000000000000000</p>
  62.  
  63. </surface>
  64.  
  65.  
  66. -<surface>
  67.  
  68. <a0>-14,27001446</a0>
  69.  
  70. <a1>-0,01139423195</a1>
  71.  
  72. <a2>0,01767039981</a2>
  73.  
  74. <a11>0,000000000000000</a11>
  75.  
  76. <a22>0,000000000000000</a22>
  77.  
  78. <a12>0,000000000000000</a12>
  79.  
  80. <p>7,000000000000000</p>
  81.  
  82. </surface>
  83.  
  84.  
  85. -<surface>
  86.  
  87. <a0>1000,000000000000000</a0>
  88.  
  89. <a1>0,000000000000000</a1>
  90.  
  91. <a2>100,000000000000000</a2>
  92.  
  93. <a11>0,100000000000000</a11>
  94.  
  95. <a22>10,000000000000000</a22>
  96.  
  97. <a12>0,100000000000000</a12>
  98.  
  99. <p>5,000000000000000</p>
  100.  
  101. </surface>
  102.  
  103. </file>
  104.  
  105.  
  106. -<file type="tar" path="\external\density.tar">
  107.  
  108.  
  109. -<point>
  110.  
  111. <x>0,8926307335010644</x>
  112.  
  113. <y>0,0000000</y>
  114.  
  115. </point>
  116.  
  117.  
  118. -<point>
  119.  
  120. <x>1,0000000</x>
  121.  
  122. <y>1,0000000</y>
  123.  
  124. </point>
  125.  
  126.  
  127. -<point>
  128.  
  129. <x>1,010856317404057</x>
  130.  
  131. <y>1,1150000</y>
  132.  
  133. </point>
  134.  
  135.  
  136. -<point>
  137.  
  138. <x>1,020830396079422</x>
  139.  
  140. <y>1,2070000</y>
  141.  
  142. </point>
  143.  
  144.  
  145. -<point>
  146.  
  147. <x>1,028725296563907</x>
  148.  
  149. <y>1,2900000</y>
  150.  
  151. </point>
  152.  
  153.  
  154. -<point>
  155.  
  156. <x>1,039637064289833</x>
  157.  
  158. <y>1,3980001</y>
  159.  
  160. </point>
  161.  
  162.  
  163. -<point>
  164.  
  165. <x>1,049006977082967</x>
  166.  
  167. <y>1,4920000</y>
  168.  
  169. </point>
  170.  
  171.  
  172. -<point>
  173.  
  174. <x>1,05794612855626</x>
  175.  
  176. <y>1,5900000</y>
  177.  
  178. </point>
  179.  
  180.  
  181. -<point>
  182.  
  183. <x>1,066427818732222</x>
  184.  
  185. <y>1,6769591</y>
  186.  
  187. </point>
  188.  
  189.  
  190. -<point>
  191.  
  192. <x>1,076289282396882</x>
  193.  
  194. <y>1,7779413</y>
  195.  
  196. </point>
  197.  
  198.  
  199. -<point>
  200.  
  201. <x>1,085701412885443</x>
  202.  
  203. <y>1,8980000</y>
  204.  
  205. </point>
  206.  
  207.  
  208. -<point>
  209.  
  210. <x>1,094635985272494</x>
  211.  
  212. <y>1,9970000</y>
  213.  
  214. </point>
  215.  
  216. </file>
  217.  
  218.  
  219. -<file type="tar" path="\external\rgr.tar">
  220.  
  221.  
  222. -<point>
  223.  
  224. <x>1,0000000</x>
  225.  
  226. <y>0,0000000</y>
  227.  
  228. </point>
  229.  
  230.  
  231. -<point>
  232.  
  233. <x>1,1150000</x>
  234.  
  235. <y>66,0000000</y>
  236.  
  237. </point>
  238.  
  239.  
  240. -<point>
  241.  
  242. <x>1,2070000</x>
  243.  
  244. <y>71,0000000</y>
  245.  
  246. </point>
  247.  
  248.  
  249. -<point>
  250.  
  251. <x>1,2900000</x>
  252.  
  253. <y>66,0000000</y>
  254.  
  255. </point>
  256.  
  257.  
  258. -<point>
  259.  
  260. <x>1,3980001</x>
  261.  
  262. <y>71,0000000</y>
  263.  
  264. </point>
  265.  
  266.  
  267. -<point>
  268.  
  269. <x>1,4920000</x>
  270.  
  271. <y>66,0000000</y>
  272.  
  273. </point>
  274.  
  275.  
  276. -<point>
  277.  
  278. <x>1,5900000</x>
  279.  
  280. <y>66,0000000</y>
  281.  
  282. </point>
  283.  
  284.  
  285. -<point>
  286.  
  287. <x>1,6769591</x>
  288.  
  289. <y>71,0000000</y>
  290.  
  291. </point>
  292.  
  293.  
  294. -<point>
  295.  
  296. <x>1,7779413</x>
  297.  
  298. <y>84,0000000</y>
  299.  
  300. </point>
  301.  
  302.  
  303. -<point>
  304.  
  305. <x>1,8980000</x>
  306.  
  307. <y>75,0000000</y>
  308.  
  309. </point>
  310.  
  311.  
  312. -<point>
  313.  
  314. <x>1,9970000</x>
  315.  
  316. <y>75,0000000</y>
  317.  
  318. </point>
  319.  
  320. </file>
  321.  
  322.  
  323. -<file type="tar" path="\external\rotate.tar">
  324.  
  325.  
  326. -<point>
  327.  
  328. <x>0,0000000</x>
  329.  
  330. <y>0,0000000</y>
  331.  
  332. </point>
  333.  
  334.  
  335. -<point>
  336.  
  337. <x>53,9255524</x>
  338.  
  339. <y>-6,0000000</y>
  340.  
  341. </point>
  342.  
  343.  
  344. -<point>
  345.  
  346. <x>111,3617477</x>
  347.  
  348. <y>-9,0000000</y>
  349.  
  350. </point>
  351.  
  352.  
  353. -<point>
  354.  
  355. <x>148,6576233</x>
  356.  
  357. <y>-11,0000000</y>
  358.  
  359. </point>
  360.  
  361.  
  362. -<point>
  363.  
  364. <x>197,2284698</x>
  365.  
  366. <y>-15,0000000</y>
  367.  
  368. </point>
  369.  
  370.  
  371. -<point>
  372.  
  373. <x>247,4183655</x>
  374.  
  375. <y>-16,0000000</y>
  376.  
  377. </point>
  378.  
  379.  
  380. -<point>
  381.  
  382. <x>304,8144531</x>
  383.  
  384. <y>-18,0000000</y>
  385.  
  386. </point>
  387.  
  388.  
  389. -<point>
  390.  
  391. <x>351,5416565</x>
  392.  
  393. <y>-16,0000000</y>
  394.  
  395. </point>
  396.  
  397.  
  398. -<point>
  399.  
  400. <x>408,9126282</x>
  401.  
  402. <y>-14,0000000</y>
  403.  
  404. </point>
  405.  
  406. </file>
  407.  
  408.  
  409. -<file type="tar" path="\external\coriol.tar">
  410.  
  411.  
  412. -<point>
  413.  
  414. <x>0,0000000</x>
  415.  
  416. <y>0,0000000</y>
  417.  
  418. </point>
  419.  
  420.  
  421. -<point>
  422.  
  423. <x>1,0000000</x>
  424.  
  425. <y>1,0000000</y>
  426.  
  427. </point>
  428.  
  429. </file>
  430.  
  431. </report>

ИИ поможет Вам:


  • решить любую задачу по программированию
  • объяснить код
  • расставить комментарии в коде
  • и т.д
Попробуйте бесплатно

Оцени полезность:

6   голосов , оценка 3.833 из 5

Нужна аналогичная работа?

Оформи быстрый заказ и узнай стоимость

Бесплатно
Оформите заказ и авторы начнут откликаться уже через 10 минут
Похожие ответы