Questions tagged «ini»

16
读取/写入INI文件
.NET框架中是否有可以读取/写入标准.ini文件的类: [Section] <keyname>=<value> ... Delphi具有TIniFile组件,我想知道C#是否有类似的东西?
263 c#  .net  ini 

6
如何使用Python3读写INI文件?
我需要读取,写入和创建一个INI使用Python3文件。 文件文件 default_path = "/path/name/" default_file = "file.txt" Python档案: # Read file and and create if it not exists config = iniFile( 'FILE.INI' ) # Get "default_path" config.default_path # Print (string)/path/name print config.default_path # Create or Update config.append( 'default_path', 'var/shared/' ) config.append( 'default_message', 'Hey! help me!!' ) 更新的 FILE.INI default_path …
117 python  python-3.x  ini 

12
用Java解析INI文件最简单的方法是什么?
我正在用Java替代传统应用程序。要求之一是必须将旧应用程序使用的ini文件原样读取到新的Java应用程序中。此ini文件的格式是常见的Windows样式,带有标题部分和键=值对,使用#作为注释字符。 我尝试使用Java中的Properties类,但是如果不同的标头之间存在名称冲突,那当然是行不通的。 因此,问题是,读取此INI文件和访问密钥的最简单方法是什么?
104 java  parsing  ini 


27
如何在Shell脚本中获取INI值?
我有一个parameters.ini文件,例如: [parameters.ini] database_user = user database_version = 20110611142248 我想从bash shell脚本中读取并使用parameters.ini文件中指定的数据库版本,以便进行处理。 #!/bin/sh # Need to get database version from parameters.ini file to use in script php app/console doctrine:migrations:migrate $DATABASE_VERSION 我该怎么做?
97 bash  shell  config  ini 

4
标准Windows .ini文件是否允许注释?
Windows ini文件中允许注释吗?(...假设您正在使用GetPrivateProfileString api函数读取它们...) [Section] Name=Value ; comment ; full line comment 并且,任何地方都有.INI文件格式的正确规范吗? 感谢您的答复-但是,也许我不够清楚。这只是我感兴趣的Windows API调用读取的格式。我知道其他实现允许注释,但是我需要了解的具体是MS Windows规范和实现。
91 windows  comments  ini 



15
PHP警告:模块已在第0行的Unknown中加载
在Mac OSX Mavericks上,每当我运行php命令时,使用自制php55,我都会收到以下错误消息(一切正常,这很烦人) PHP Warning: Module 'intl' already loaded in Unknown on line 0 我跑了 php --ini 和输出是 php --ini PHP Warning: Module 'intl' already loaded in Unknown on line 0 Warning: Module 'intl' already loaded in Unknown on line 0 Configuration File (php.ini) Path: /usr/local/etc/php/5.5 Loaded Configuration File: /usr/local/etc/php/5.5/php.ini …
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.